summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorXipmix <576337-xipmix@users.noreply.gitlab.com>2022-03-16 20:29:34 +1100
committerXipmix <576337-xipmix@users.noreply.gitlab.com>2022-03-16 21:06:17 +1100
commitd232b544030f0ba7922a1ba5462b80e7c2ac3f57 (patch)
tree65b290dd925dc5817b2bb118f0487c8add8dbd8f /share
parent87ce62eb101599246350ba81126adf36819c7c3d (diff)
downloadsubplot-d232b544030f0ba7922a1ba5462b80e7c2ac3f57.tar.gz
missing word
Diffstat (limited to 'share')
-rw-r--r--share/python/template/asserts.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/python/template/asserts.py b/share/python/template/asserts.py
index 33609ce..ceab2e2 100644
--- a/share/python/template/asserts.py
+++ b/share/python/template/asserts.py
@@ -1,9 +1,9 @@
-# Check two values for equality and give error if they are not equal
+# Check two values for equality and give an error if they are not equal
def assert_eq(a, b):
assert a == b, "expected %r == %r" % (a, b)
-# Check two values for inequality and give error if they are equal
+# Check two values for inequality and give an error if they are equal
def assert_ne(a, b):
assert a != b, "expected %r != %r" % (a, b)