Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorial/MultipleBehaviors.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ There are a few points to note:
* Every behavior applies on its own and must hold by itself --- there is no if-then-else among them. If a behavior's preconditions hold,
then its postconditions must hold, independent of what any other behavior says.

In our example, if `a`, `b`, and `c` are all equal, then the precondiition (`requires` clause) of each of the three behaviors is true.
In our example, if `a`, `b`, and `c` are all equal, then the precondition (`requires` clause) of each of the three behaviors is true.
So the postconditions of each of the behaviors must also be true. Fortunately they all agree.

As an experiment, this example introduces a mistake in one behavior:
Expand Down