fix: unnecessary space

This commit is contained in:
katopz
2022-10-11 09:47:49 +07:00
parent de36f5cfb0
commit 81ea842fe7
6 changed files with 9 additions and 9 deletions

View File

@ -24,7 +24,7 @@ fn main() {
2. 🌟
```rust,editable
// Fill the blank
// Fill the blank
fn main() {
let v: u16 = 38_u8 as __;

View File

@ -240,7 +240,7 @@ Besides jump into the standard library, you can also jump to another module in t
// in lib.rs
mod a {
/// Add four to the given value and return a [`Option`] type
/// Add four to the given value and return a [`Option`] type
/// [`crate::MySpecialFormatter`]
pub fn add_four(x: i32) -> Option<i32> {
Some(x + 4)