summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--share/bash/template/assert.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/bash/template/assert.sh b/share/bash/template/assert.sh
index 17aa71e..ccfd09a 100644
--- a/share/bash/template/assert.sh
+++ b/share/bash/template/assert.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-# 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
assert_eq() {
if ! diff -u <(echo "$1") <(echo "$2")
then