File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ For example, in the following code:
53
53
``` rust
54
54
/// Does the thing.
55
55
pub fn do_the_thing (_ : SomeType ) {
56
- println! (" Let's do the thing!" );
56
+ println! (" Let's do the thing!" );
57
57
}
58
58
59
59
/// Token you use to [`do_the_thing`].
@@ -66,15 +66,15 @@ target out also works:
66
66
67
67
``` rust
68
68
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 ;
71
71
}
72
72
73
73
/// Does the thing. Requires one [`SomeStruct`] for the thing to work.
74
74
///
75
75
/// [`SomeStruct`]: some_module::SomeStruct
76
76
pub fn do_the_thing (_ : some_module :: SomeStruct ) {
77
- println! (" Let's do the thing!" );
77
+ println! (" Let's do the thing!" );
78
78
}
79
79
```
80
80
You can’t perform that action at this time.
0 commit comments