Skip to content

Commit

Permalink
Fix a small typo in exception-safety.md (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelo-gonzalez authored Feb 13, 2022
1 parent 78da21c commit 90993ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exception-safety.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ The basic idea is simple: if the comparison panics, we just toss the loose
element in the logically uninitialized index and bail out. Anyone who observes
the heap will see a potentially *inconsistent* heap, but at least it won't
cause any double-drops! If the algorithm terminates normally, then this
operation happens to coincide precisely with the how we finish up regardless.
operation happens to coincide precisely with how we finish up regardless.

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

0 comments on commit 90993ee

Please sign in to comment.