Skip to content

Commit

Permalink
Changes "lower" to "capital" in GEO units history notes (redis#11164)
Browse files Browse the repository at this point in the history
A overlooked mistake in the redis#11162
  • Loading branch information
itamarhaber committed Aug 21, 2022
1 parent ca6aead commit a534983
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/commands.c
Expand Up @@ -1928,7 +1928,7 @@ struct redisCommandArg GEOPOS_Args[] = {
/* GEORADIUS history */
commandHistory GEORADIUS_History[] = {
{"6.2.0","Added the `ANY` option for `COUNT`."},
{"7.0.0","Added support for lower-case unit names."},
{"7.0.0","Added support for capital-case unit names."},
{0}
};

Expand Down Expand Up @@ -1979,7 +1979,7 @@ struct redisCommandArg GEORADIUS_Args[] = {

/* GEORADIUSBYMEMBER history */
commandHistory GEORADIUSBYMEMBER_History[] = {
{"7.0.0","Added support for lower-case unit names."},
{"7.0.0","Added support for capital-case unit names."},
{0}
};

Expand Down Expand Up @@ -2123,7 +2123,7 @@ struct redisCommandArg GEORADIUS_RO_Args[] = {

/* GEOSEARCH history */
commandHistory GEOSEARCH_History[] = {
{"7.0.0","Added support for lower-case unit names."},
{"7.0.0","Added support for capital-case unit names."},
{0}
};

Expand Down Expand Up @@ -2215,7 +2215,7 @@ struct redisCommandArg GEOSEARCH_Args[] = {

/* GEOSEARCHSTORE history */
commandHistory GEOSEARCHSTORE_History[] = {
{"7.0.0","Added support for lower-case unit names."},
{"7.0.0","Added support for capital-case unit names."},
{0}
};

Expand Down
2 changes: 1 addition & 1 deletion src/commands/georadius.json
Expand Up @@ -14,7 +14,7 @@
],
[
"7.0.0",
"Added support for lower-case unit names."
"Added support for capital-case unit names."
]
],
"deprecated_since": "6.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/georadiusbymember.json
Expand Up @@ -10,7 +10,7 @@
"history": [
[
"7.0.0",
"Added support for lower-case unit names."
"Added support for capital-case unit names."
]
],
"deprecated_since": "6.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/commands/geosearch.json
Expand Up @@ -9,7 +9,7 @@
"history": [
[
"7.0.0",
"Added support for lower-case unit names."
"Added support for capital-case unit names."
]
],
"command_flags": [
Expand Down
2 changes: 1 addition & 1 deletion src/commands/geosearchstore.json
Expand Up @@ -9,7 +9,7 @@
"history": [
[
"7.0.0",
"Added support for lower-case unit names."
"Added support for capital-case unit names."
]
],
"command_flags": [
Expand Down

0 comments on commit a534983

Please sign in to comment.