Skip to content

Commit

Permalink
Fix typo at Understanding the Syntax section (hwayne#52)
Browse files Browse the repository at this point in the history
Great docs, Hillel! It's helping me to add more TLA+ features into my `pfeodrippe/recife` project.
  • Loading branch information
pfeodrippe committed Jan 27, 2023
1 parent 8b50ede commit 8288ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/core/action-properties.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ It's finally time to talk about the "actions" in "Temporal Logic of Actions".
.. index:: ' (next value)
.. _prime:

So remember how way back I said that `strings must use double quotes <string>`? That's because single quotes have a special role in TLA+. In any given step, ``x'`` is the value of x at the *end of the step* and the value x starts as in the *next* step. ``[](x' >= x)``, then, is "it is always true that the *next value of x* is larger than x".
So remember how way back I said that `strings must use double quotes <string>`? That's because single quotes have a special role in TLA+. In any given step, ``x'`` is the value of x at the *end of the step* and the value x starts as in the *next* step. ``[](x' >= x)``, then, is "it is always true that the *next value of x* is larger than or equal to x".

.. tip:: you can use primed operators in the `trace explorer <trace_explorer>`. It'll show you the value of the expression in the next step.

Expand Down

0 comments on commit 8288ac2

Please sign in to comment.