Fix typo introduced by the previous typo fix

The previous fix changed "expection" to "exception", but in this
context, "expectation" is expected.

Signed-off-by: Daiki Ueno <dueno@redhat.com>
This commit is contained in:
Daiki Ueno 2020-10-13 13:10:01 +02:00
parent 0888d3db13
commit 0a66cc3273

View file

@ -194,7 +194,7 @@ Error classes derive (perhaps indirectly) from
`java.lang.Throwable`, but not from
`java.lang.Exception`.
The general exception is that run-time errors are avoided by
The general expectation is that run-time errors are avoided by
careful programming (e.g., not dividing by zero). Checked
exception are expected to be caught as they happen (e.g., when
an input file is unexpectedly missing). Errors are impossible