You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add a newline after #[cfg(feature = "std")]. (#845)
And add a space before the `{}` in `Error` impls.
Instead of this:
```rust
#[cfg(feature = "std")]impl std::error::Error for ErrorCode{}
```
Print this:
```rust
#[cfg(feature = "std")]
impl std::error::Error for ErrorCode {}
```
rustfmt can do this too, but we can be slightly prettier by default.
0 commit comments