Skip to content

Commit

Permalink
Auto merge of #3959 - JakeRoggenbuck:fix-spelling-in-readme, r=saethlin
Browse files Browse the repository at this point in the history
Fix spelling in README

Great project! I was reading some docs and found these that I think are spelling errors.
  • Loading branch information
bors committed Oct 10, 2024
2 parents 26ce30d + 0130edd commit faf8c14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/miri/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ environment variable. We first document the most relevant and most commonly used
* `-Zmiri-compare-exchange-weak-failure-rate=<rate>` changes the failure rate of
`compare_exchange_weak` operations. The default is `0.8` (so 4 out of 5 weak ops will fail).
You can change it to any value between `0.0` and `1.0`, where `1.0` means it
will always fail and `0.0` means it will never fail. Note than setting it to
will always fail and `0.0` means it will never fail. Note that setting it to
`1.0` will likely cause hangs, since it means programs using
`compare_exchange_weak` cannot make progress.
* `-Zmiri-disable-isolation` disables host isolation. As a consequence,
Expand Down Expand Up @@ -392,7 +392,7 @@ to Miri failing to detect cases of undefined behavior in a program.
but reports to the program that it did actually write. This is useful when you
are not interested in the actual program's output, but only want to see Miri's
errors and warnings.
* `-Zmiri-panic-on-unsupported` will makes some forms of unsupported functionality,
* `-Zmiri-panic-on-unsupported` will make some forms of unsupported functionality,
such as FFI and unsupported syscalls, panic within the context of the emulated
application instead of raising an error within the context of Miri (and halting
execution). Note that code might not expect these operations to ever panic, so
Expand Down

0 comments on commit faf8c14

Please sign in to comment.