diff options
author | Ikko Ashimine <eltociear@gmail.com> | 2021-03-16 23:41:45 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-16 16:41:45 +0200 |
commit | 6da2bc96e210dba081328d9b24f466cea6047826 (patch) | |
tree | 3083ec9969cf929d78c6bf23c0c1d3f450fe657d /src/t_stream.c | |
parent | 95360c2e0cb65956bfcd2c57fb909a9c93723e21 (diff) | |
download | redis-6da2bc96e210dba081328d9b24f466cea6047826.tar.gz |
Fix typo in t_stream.c (#8592)
arguements -> arguments
Diffstat (limited to 'src/t_stream.c')
-rw-r--r-- | src/t_stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/t_stream.c b/src/t_stream.c index 18138bec5..da4198886 100644 --- a/src/t_stream.c +++ b/src/t_stream.c @@ -861,7 +861,7 @@ int64_t streamTrimByID(stream *s, streamID minid, int approx) { return streamTrim(s, &args); } -/* Parse the arguements of XADD/XTRIM. +/* Parse the arguments of XADD/XTRIM. * * See streamAddTrimArgs for more details about the arguments handled. * |