File tree 2 files changed +4
-4
lines changed
compiler/rustc_codegen_llvm/src/llvm
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ extern "C" {
24
24
pub ( crate ) fn LLVMDumpValue ( V : & Value ) ;
25
25
pub ( crate ) fn LLVMGetFunctionCallConv ( F : & Value ) -> c_uint ;
26
26
pub ( crate ) fn LLVMGetReturnType ( T : & Type ) -> & Type ;
27
- pub ( crate ) fn LLVMGetParams ( Fnc : & Value , parms : * mut & Value ) ;
27
+ pub ( crate ) fn LLVMGetParams ( Fnc : & Value , params : * mut & Value ) ;
28
28
pub ( crate ) fn LLVMGetNamedFunction ( M : & Module , Name : * const c_char ) -> Option < & Value > ;
29
29
}
30
30
Original file line number Diff line number Diff line change @@ -95,10 +95,10 @@ use crate::sys_common::{FromInner, IntoInner};
95
95
/// let now = Instant::now();
96
96
/// let days_per_10_millennia = 365_2425;
97
97
/// let solar_seconds_per_day = 60 * 60 * 24;
98
- /// let millenium_in_solar_seconds = 31_556_952_000;
99
- /// assert_eq!(millenium_in_solar_seconds , days_per_10_millennia * solar_seconds_per_day / 10);
98
+ /// let millennium_in_solar_seconds = 31_556_952_000;
99
+ /// assert_eq!(millennium_in_solar_seconds , days_per_10_millennia * solar_seconds_per_day / 10);
100
100
///
101
- /// let duration = Duration::new(millenium_in_solar_seconds , 0);
101
+ /// let duration = Duration::new(millennium_in_solar_seconds , 0);
102
102
/// println!("{:?}", now + duration);
103
103
/// ```
104
104
///
You can’t perform that action at this time.
0 commit comments