File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1260,7 +1260,7 @@ mod return_keyword {}
1260
1260
/// is part of a recursive cycle in the call graph.
1261
1261
///
1262
1262
/// For example note that the functions `halt` and `halt_loop` below are
1263
- /// identical, they both do nothing, forever. However `stack_overflow` is
1263
+ /// identical, they both do nothing, forever. However, `stack_overflow` is
1264
1264
/// different from them, even though it is written almost identically to
1265
1265
/// `halt`, `stack_overflow` exhausts the stack and so causes a stack
1266
1266
/// overflow, instead of running forever.
@@ -1284,10 +1284,10 @@ mod return_keyword {}
1284
1284
/// }
1285
1285
/// ```
1286
1286
///
1287
- /// Note that from the algorithmic standpoint loops and tail-calls are
1287
+ /// Note that from an algorithmic standpoint, loops and tail-calls are
1288
1288
/// interchangeable, you can always rewrite a loop to use tail-calls
1289
1289
/// instead and vice versa. They are, however, very different in the code
1290
- /// structure, so sometimes one approach can make more sense that the other.
1290
+ /// structure, so sometimes one approach can make more sense than the other.
1291
1291
#[ cfg( not( bootstrap) ) ]
1292
1292
mod become_keyword { }
1293
1293
You can’t perform that action at this time.
0 commit comments