@@ -732,7 +732,7 @@ impl Build {
732
732
/// This option sets the `-stdlib` flag, which is only supported by some
733
733
/// compilers (clang, icc) but not by others (gcc). The library will not
734
734
/// detect which compiler is used, as such it is the responsibility of the
735
- /// caller to ensure that this option is only used in conjuction with a
735
+ /// caller to ensure that this option is only used in conjunction with a
736
736
/// compiler which supports the `-stdlib` flag.
737
737
///
738
738
/// A value of `None` indicates that no specific C++ standard library should
@@ -1849,7 +1849,7 @@ impl Build {
1849
1849
for flag in self . ar_flags . iter ( ) {
1850
1850
cmd. arg ( flag) ;
1851
1851
}
1852
- // If the library file already exists, add the libary name
1852
+ // If the library file already exists, add the library name
1853
1853
// as an argument to let lib.exe know we are appending the objs.
1854
1854
if dst. exists ( ) {
1855
1855
cmd. arg ( dst) ;
@@ -2124,7 +2124,7 @@ impl Build {
2124
2124
//
2125
2125
// As the shell script calls the main clang binary, the command line limit length
2126
2126
// on Windows is restricted to around 8k characters instead of around 32k characters.
2127
- // To remove this limit, we call the main clang binary directly and contruct the
2127
+ // To remove this limit, we call the main clang binary directly and construct the
2128
2128
// `--target=` ourselves.
2129
2129
if host. contains ( "windows" ) && android_clang_compiler_uses_target_arg_internally ( & tool. path )
2130
2130
{
@@ -2652,7 +2652,7 @@ impl Tool {
2652
2652
}
2653
2653
2654
2654
#[ cfg( windows) ]
2655
- /// Explictly set the `ToolFamily`, skipping name-based detection.
2655
+ /// Explicitly set the `ToolFamily`, skipping name-based detection.
2656
2656
fn with_family ( path : PathBuf , family : ToolFamily ) -> Self {
2657
2657
Self {
2658
2658
path : path,
0 commit comments