Skip to content

Commit 1b84a5a

Browse files
committed
comment fixes
1 parent 6ac4027 commit 1b84a5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fuel.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ impl Fuel {
9898
/// endlessly.
9999
///
100100
/// By default, the recursion level is automatically incremented whenever `Thread::step` is
101-
/// about to trigger a callback, so this is should almost never be necessary to call explicitly.
101+
/// about to trigger a callback, so this should almost never be necessary to call explicitly.
102102
///
103103
/// With the normal stdlib, arbitrary recursion is only possible by (ab)using coroutines. Normal
104-
/// Lua recursion and Rust code "calling" Lua code via a `Sequence` poll does not actually use
104+
/// Lua recursion and Rust code "calling" Lua code via a `Sequence::poll` does not actually use
105105
/// the real Rust call stack, and cannot lead to using unbounded time or unbounded Rust stack
106106
/// space. Coroutines create their own inner `Thread`s and step them inside a `Sequence`, so
107107
/// they can eventually trigger a recursion limit in pathological cases.

0 commit comments

Comments
 (0)