@@ -47,7 +47,7 @@ impl fmt::Debug for c_void {
47
47
/// Basic implementation of a `va_list`.
48
48
#[ cfg( any( all( not( target_arch = "aarch64" ) , not( target_arch = "powerpc" ) ,
49
49
not( target_arch = "x86_64" ) ) ,
50
- all( target_arch = "aarch4 " , target_os = "ios" ) ,
50
+ all( target_arch = "aarch64 " , target_os = "ios" ) ,
51
51
windows) ) ]
52
52
#[ unstable( feature = "c_variadic" ,
53
53
reason = "the `c_variadic` feature has not been properly tested on \
@@ -67,7 +67,7 @@ impl fmt::Debug for VaListImpl {
67
67
}
68
68
69
69
/// AArch64 ABI implementation of a `va_list`. See the
70
- /// [Aarch64 Procedure Call Standard] for more details.
70
+ /// [AArch64 Procedure Call Standard] for more details.
71
71
///
72
72
/// [AArch64 Procedure Call Standard]:
73
73
/// http://infocenter.arm.com/help/topic/com.arm.doc.ihi0055b/IHI0055B_aapcs64.pdf
@@ -193,7 +193,7 @@ impl<'a> VaList<'a> {
193
193
where F : for < ' copy > FnOnce ( VaList < ' copy > ) -> R {
194
194
#[ cfg( any( all( not( target_arch = "aarch64" ) , not( target_arch = "powerpc" ) ,
195
195
not( target_arch = "x86_64" ) ) ,
196
- all( target_arch = "aarch4 " , target_os = "ios" ) ,
196
+ all( target_arch = "aarch64 " , target_os = "ios" ) ,
197
197
windows) ) ]
198
198
let mut ap = va_copy ( self ) ;
199
199
#[ cfg( all( any( target_arch = "aarch64" , target_arch = "powerpc" , target_arch = "x86_64" ) ,
0 commit comments