Skip to content

Commit 0c25064

Browse files
samratRalfJung
andauthored
Remove unnecessary whitespace
Co-authored-by: Ralf Jung <[email protected]>
1 parent 46852d7 commit 0c25064

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shims/posix/fs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ pub struct FileHandler {
127127

128128
impl<'tcx> Default for FileHandler {
129129
fn default() -> Self {
130-
let mut handles : BTreeMap<_, Box<dyn FileDescriptor>> = BTreeMap::new();
130+
let mut handles: BTreeMap<_, Box<dyn FileDescriptor>> = BTreeMap::new();
131131
handles.insert(0i32, Box::new(io::stdin()));
132132
handles.insert(1i32, Box::new(io::stdout()));
133133
handles.insert(2i32, Box::new(io::stderr()));

0 commit comments

Comments
 (0)