@@ -188,14 +188,14 @@ pub struct Config {
188188 /// This should be false if:
189189 /// - this is an artifact of the rustc distribution process for "stable" or for "beta"
190190 /// - this is an `#[test]` that does not opt in with `enable_nightly_features`
191- /// - this is a integration test that uses `ProcessBuilder`
191+ /// - this is an integration test that uses `ProcessBuilder`
192192 /// that does not opt in with `masquerade_as_nightly_cargo`
193193 /// This should be true if:
194194 /// - this is an artifact of the rustc distribution process for "nightly"
195195 /// - this is being used in the rustc distribution process internally
196196 /// - this is a cargo executable that was built from source
197197 /// - this is an `#[test]` that called `enable_nightly_features`
198- /// - this is a integration test that uses `ProcessBuilder`
198+ /// - this is an integration test that uses `ProcessBuilder`
199199 /// that called `masquerade_as_nightly_cargo`
200200 /// It's public to allow tests use nightly features.
201201 /// NOTE: this should be set before `configure()`. If calling this from an integration test,
@@ -836,7 +836,7 @@ impl Config {
836836 Ok ( ( ) )
837837 }
838838
839- /// Low-level method for getting a config value as a `OptValue<HashMap<String, CV>>`.
839+ /// Low-level method for getting a config value as an `OptValue<HashMap<String, CV>>`.
840840 ///
841841 /// NOTE: This does not read from env. The caller is responsible for that.
842842 fn get_table ( & self , key : & ConfigKey ) -> CargoResult < OptValue < HashMap < String , CV > > > {
0 commit comments