File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -139,9 +139,14 @@ that one can still write things like `#[deriving(Eq)]`).
139
139
140
140
~~~
141
141
```rust
142
- # // showing 'fib' in this documentation would just be tedious and detracts from
143
- # // what's actualy being documented.
144
- # fn fib(n: int) { n + 2 }
142
+ # /!\ The three following lines are comments, which are usually stripped off by
143
+ # the doc-generating tool. In order to display them anyway in this particular
144
+ # case, the character following the leading '#' is not a usual space like in
145
+ # these first five lines but a non breakable one.
146
+ #
147
+ # // showing 'fib' in this documentation would just be tedious and detracts from
148
+ # // what's actualy being documented.
149
+ # fn fib(n: int) { n + 2 }
145
150
146
151
do spawn { fib(200); }
147
152
```
You can’t perform that action at this time.
0 commit comments