Merge pull request #104 from david-mitchell/patch-1

Fix typo.
This commit is contained in:
Andrew Pardoe 2015-09-24 07:44:58 -07:00
commit f5c3eecc00

View File

@ -1205,7 +1205,7 @@ Postconditions related only to internal state belongs in the definition/implemen
**Alternative**: Postconditions of the form "this resource must be released" are best expressed by [RAII](#Rr-raii).
Ideally, that `Ensured` should be part of the interface that's not easily done. For now, we place it in the definition (function body).
Ideally, that `Ensures` should be part of the interface that's not easily done. For now, we place it in the definition (function body).
**Enforcement**: (Not enforceable) Finding the variety of ways postconditions can be asserted is not feasible. Warning about those that can be easily identified (assert()) has questionable value in the absence of a language facility.