aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xremembering2
1 files changed, 1 insertions, 1 deletions
diff --git a/remembering b/remembering
index 9a1716f..2df0e93 100755
--- a/remembering
+++ b/remembering
@@ -47,7 +47,7 @@ cat | sort > "$SORTED_STDIN"
cmp() {
BEFORE="$(printf '%s\n%s\n' "$1" "$2")"
- AFTER="$(echo "$BEFORE" | sort)" # FIXME: is this a lexicographical sort?
+ AFTER="$(echo "$BEFORE" | sort)"
if [ "$BEFORE" = "$AFTER" ]; then
return 0
else