We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 692ab61 commit 52181a5Copy full SHA for 52181a5
rust/runfiles/runfiles.rs
@@ -228,8 +228,8 @@ impl Runfiles {
228
}
229
230
fn create_manifest_based(manifest_path: &Path) -> Result<Mode> {
231
- let manifest_content = fs::read_to_string(manifest_path)
232
- .map_err(RunfilesError::RunfilesManifestIoError)?;
+ let manifest_content =
+ fs::read_to_string(manifest_path).map_err(RunfilesError::RunfilesManifestIoError)?;
233
let path_mapping = manifest_content
234
.lines()
235
.flat_map(|line| {
0 commit comments