Skip to content

Commit 90993ee

Browse files
Fix a small typo in exception-safety.md (#341)
1 parent 78da21c commit 90993ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/exception-safety.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ The basic idea is simple: if the comparison panics, we just toss the loose
140140
element in the logically uninitialized index and bail out. Anyone who observes
141141
the heap will see a potentially *inconsistent* heap, but at least it won't
142142
cause any double-drops! If the algorithm terminates normally, then this
143-
operation happens to coincide precisely with the how we finish up regardless.
143+
operation happens to coincide precisely with how we finish up regardless.
144144

145145
Sadly, Rust has no such construct, so we're going to need to roll our own! The
146146
way to do this is to store the algorithm's state in a separate struct with a

0 commit comments

Comments
 (0)