Skip to content

Commit

Permalink
Fix to pass with both old and new Kcas
Browse files Browse the repository at this point in the history
The `Loc.t` type has changed, which makes a MDX block fail.  This changes the
block such that it will pass with both old and new Kcas.
  • Loading branch information
polytypic committed Feb 25, 2024
1 parent 261b583 commit 6ee8ab9
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1608,10 +1608,8 @@ To demonstrate **kcas**
let's first create a couple of shared memory locations

```ocaml
# let x = Loc.make 0
val x : int Loc.t = <abstr>
# let y = Loc.make 0
val y : int Loc.t = <abstr>
let x = Loc.make 0
let y = Loc.make 0
```

and spawn a domain
Expand Down

0 comments on commit 6ee8ab9

Please sign in to comment.