summaryrefslogtreecommitdiff
path: root/src/aof.c
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2013-12-05 16:35:32 +0100
committerantirez <antirez@gmail.com>2013-12-05 16:35:32 +0100
commit11e81a1e9ad1d1b4639aa8ed3fd2616ed8d1f176 (patch)
tree72de378d3a94427d675affca85fac90637e13dd5 /src/aof.c
parent74da4a574ffa39c09f1ff85fc27c0614bc23d532 (diff)
downloadredis-11e81a1e9ad1d1b4639aa8ed3fd2616ed8d1f176.tar.gz
Fixed grammar: before H the article is a, not an.
Diffstat (limited to 'src/aof.c')
-rw-r--r--src/aof.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aof.c b/src/aof.c
index 8cbdec889..c32b32e4b 100644
--- a/src/aof.c
+++ b/src/aof.c
@@ -772,7 +772,7 @@ int rewriteSortedSetObject(rio *r, robj *key, robj *o) {
return 1;
}
-/* Write either the key or the value of the currently selected item of an hash.
+/* Write either the key or the value of the currently selected item of a hash.
* The 'hi' argument passes a valid Redis hash iterator.
* The 'what' filed specifies if to write a key or a value and can be
* either REDIS_HASH_KEY or REDIS_HASH_VALUE.