Skip to content

Commit e1b2306

Browse files
Run cargo fmt
1 parent 7d1366d commit e1b2306

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/extended.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use crate::MiMalloc;
22

33
impl MiMalloc {
44
/// Get the mimalloc version.
5-
///
5+
///
66
/// For mimalloc version 1.8.6, this will return 186.
77
pub fn version(&self) -> u32 {
88
unsafe { ffi::mi_version() as u32 }
@@ -12,10 +12,10 @@ impl MiMalloc {
1212
#[cfg(test)]
1313
mod test {
1414
use super::*;
15-
15+
1616
#[test]
1717
fn it_gets_version() {
1818
let version = MiMalloc.version();
1919
assert!(version != 0);
2020
}
21-
}
21+
}

0 commit comments

Comments
 (0)