@@ -188,14 +188,14 @@ pub struct Config {
188
188
/// This should be false if:
189
189
/// - this is an artifact of the rustc distribution process for "stable" or for "beta"
190
190
/// - 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`
192
192
/// that does not opt in with `masquerade_as_nightly_cargo`
193
193
/// This should be true if:
194
194
/// - this is an artifact of the rustc distribution process for "nightly"
195
195
/// - this is being used in the rustc distribution process internally
196
196
/// - this is a cargo executable that was built from source
197
197
/// - 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`
199
199
/// that called `masquerade_as_nightly_cargo`
200
200
/// It's public to allow tests use nightly features.
201
201
/// NOTE: this should be set before `configure()`. If calling this from an integration test,
@@ -836,7 +836,7 @@ impl Config {
836
836
Ok ( ( ) )
837
837
}
838
838
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>>`.
840
840
///
841
841
/// NOTE: This does not read from env. The caller is responsible for that.
842
842
fn get_table ( & self , key : & ConfigKey ) -> CargoResult < OptValue < HashMap < String , CV > > > {
0 commit comments