summaryrefslogtreecommitdiff
path: root/docutils/statemachine.py
diff options
context:
space:
mode:
Diffstat (limited to 'docutils/statemachine.py')
-rw-r--r--docutils/statemachine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/docutils/statemachine.py b/docutils/statemachine.py
index 0c26ee3d2..6a29b9747 100644
--- a/docutils/statemachine.py
+++ b/docutils/statemachine.py
@@ -313,7 +313,7 @@ class StateMachine:
self.notify_observers()
def is_next_line_blank(self):
- """Return 1 if the next line is blank or non-existant."""
+ """Return 1 if the next line is blank or non-existent."""
try:
return not self.input_lines[self.line_offset + 1].strip()
except IndexError: