Skip to content

Commit c83ceb4

Browse files
authored
Style error
1 parent edc92b1 commit c83ceb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/types/closure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ modify a value. So a unique immutable borrow is used: it borrows `x` immutably,
111111
but like a mutable borrow, it must be unique. In the above example, uncommenting
112112
the declaration of `y` will produce an error because it would violate the
113113
uniqueness of the closure's borrow of `x`; the declaration of `z` is valid because
114-
the closure's lifetime has expired, i.e. there are no `c` calls after `z`,
114+
the closure's lifetime has expired, i.e. there are no `c` calls after `z`,
115115
releasing the borrow.
116116

117117
## Call traits and coercions

0 commit comments

Comments
 (0)