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 {}
12601260/// is part of a recursive cycle in the call graph.
12611261///
12621262/// 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
12641264/// different from them, even though it is written almost identically to
12651265/// `halt`, `stack_overflow` exhausts the stack and so causes a stack
12661266/// overflow, instead of running forever.
@@ -1284,10 +1284,10 @@ mod return_keyword {}
12841284/// }
12851285/// ```
12861286///
1287- /// Note that from the algorithmic standpoint loops and tail-calls are
1287+ /// Note that from an algorithmic standpoint, loops and tail-calls are
12881288/// interchangeable, you can always rewrite a loop to use tail-calls
12891289/// 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.
12911291#[ cfg( not( bootstrap) ) ]
12921292mod become_keyword { }
12931293
You can’t perform that action at this time.
0 commit comments