Merge pull request #51 from mdempsky/csl-example-typo

Fix typo in ConcurrentSeparationLogic.v example
This commit is contained in:
Adam Chlipala 2021-01-03 14:39:16 -05:00 committed by GitHub
commit 845c9189c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -699,7 +699,7 @@ Qed.
(* Here's a variant on the last example. Now we have three stages.
* Stage 1: push consecutive even numbers to stack 1.
* Stage 2: pop from stack 1 and push to stack 1, reusing the memory for the
* Stage 2: pop from stack 1 and push to stack 2, reusing the memory for the
* list node.
* Stage 3: pop from stack 2 and fail if odd. *)