Skip to content

Commit 9e98a25

Browse files
tabs -> spaces
1 parent 009c91a commit 9e98a25

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/doc/rustdoc/src/unstable-features.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ For example, in the following code:
5353
```rust
5454
/// Does the thing.
5555
pub fn do_the_thing(_: SomeType) {
56-
println!("Let's do the thing!");
56+
println!("Let's do the thing!");
5757
}
5858

5959
/// Token you use to [`do_the_thing`].
@@ -66,15 +66,15 @@ target out also works:
6666

6767
```rust
6868
pub mod some_module {
69-
/// Token you use to do the thing.
70-
pub struct SomeStruct;
69+
/// Token you use to do the thing.
70+
pub struct SomeStruct;
7171
}
7272

7373
/// Does the thing. Requires one [`SomeStruct`] for the thing to work.
7474
///
7575
/// [`SomeStruct`]: some_module::SomeStruct
7676
pub fn do_the_thing(_: some_module::SomeStruct) {
77-
println!("Let's do the thing!");
77+
println!("Let's do the thing!");
7878
}
7979
```
8080

0 commit comments

Comments
 (0)