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:
5353``` rust
5454/// Does the thing.
5555pub 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
6868pub 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
7676pub fn do_the_thing (_ : some_module :: SomeStruct ) {
77- println! (" Let's do the thing!" );
77+ println! (" Let's do the thing!" );
7878}
7979```
8080
You can’t perform that action at this time.
0 commit comments