diff options
author | 2022-11-19 14:00:53 -0800 | |
---|---|---|
committer | 2022-11-19 14:00:53 -0800 | |
commit | 1e4f1d49919bf4dd0cfe1af1fcd95d1d90e4b7ff (patch) | |
tree | e9f8b9fe28fca2858ce1c1a54871c022b8374199 /src/ids.rs | |
parent | 52b5cb70ec6aaa058d306c9916bcb851f2311730 (diff) | |
download | notion-1e4f1d49919bf4dd0cfe1af1fcd95d1d90e4b7ff.tar.gz notion-1e4f1d49919bf4dd0cfe1af1fcd95d1d90e4b7ff.tar.zst notion-1e4f1d49919bf4dd0cfe1af1fcd95d1d90e4b7ff.zip |
style(cargo fmt): Add rustfmt config, and fmt code
Diffstat (limited to 'src/ids.rs')
-rw-r--r-- | src/ids.rs | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -41,7 +41,10 @@ macro_rules! identifer { } impl std::fmt::Display for $name { - fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + fn fmt( + &self, + f: &mut std::fmt::Formatter<'_>, + ) -> std::fmt::Result { self.0.fmt(f) } } |