Skip to content

Commit b3fa8ca

Browse files
committed
Fix typos in README
1 parent 952f217 commit b3fa8ca

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ consistent** -- the observed behaviour can simply be understood as the
239239
interleaved execution of different domains. This guarantee is known as
240240
data-race-freedom sequential-consistency (DRF-SC).
241241
242-
An important aspect of the OCaml 5 memory model is that, even if you program has
242+
An important aspect of the OCaml 5 memory model is that, even if your program has
243243
data races, your program will not crash (memory safety). The recommendation for
244244
the OCaml user is that **avoid data races for ease of reasoning**.
245245
@@ -493,7 +493,7 @@ straight-forward way to parallelize such code. Lets take the
493493
benchmark from the computer language benchmarks game. The sequential version of
494494
the benchmark is available at [src/spectralnorm.ml](src/spectralnorm.ml).
495495
496-
We can see that the program has several for loops. How do we which part of the
496+
We can see that the program has several for loops. How do we know which part of the
497497
program is amenable to parallelism? We can profile the program using `perf` to
498498
answer this. `perf` only works on Linux.
499499

0 commit comments

Comments
 (0)