diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-11-03 17:41:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-03 17:41:45 (GMT) |
commit | 4614b983b600425ed198d2d2407ca77316762531 (patch) | |
tree | 95293b50925ac95e1d8f87b0ce0ae9acd69031c1 /Doc/tutorial | |
parent | 29abad099535f4bcb1531df93bafbd75b26d6adc (diff) | |
download | cpython-4614b983b600425ed198d2d2407ca77316762531.zip cpython-4614b983b600425ed198d2d2407ca77316762531.tar.gz cpython-4614b983b600425ed198d2d2407ca77316762531.tar.bz2 |
Fix a typo about a comma. (GH-10306)
(cherry picked from commit fe62d877e300e1ee4145fff8f2bdba498b685f91)
Co-authored-by: İsmail Arılık <arilik.ismail@gmail.com>
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/errors.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/errors.rst b/Doc/tutorial/errors.rst index aba61da..957cbf9 100644 --- a/Doc/tutorial/errors.rst +++ b/Doc/tutorial/errors.rst @@ -314,7 +314,7 @@ to create specific exception classes for different error conditions:: self.next = next self.message = message -Most exceptions are defined with names that end in "Error," similar to the +Most exceptions are defined with names that end in "Error", similar to the naming of the standard exceptions. Many standard modules define their own exceptions to report errors that may |