docs: fix ratelimit example (#2905)

Some fields are mixed case which is inconsistent with the rest of
example configs.

Signed-off-by: Ramkumar Chinchani <rchincha.dev@gmail.com>
This commit is contained in:
Ramkumar Chinchani
2025-01-22 09:17:01 -08:00
committed by GitHub
parent c6d343a730
commit ececc9c2c9
+5 -5
View File
@@ -6,12 +6,12 @@
"http": {
"address": "127.0.0.1",
"port": "8080",
"Ratelimit": {
"Rate": 10,
"Methods": [
"ratelimit": {
"rate": 10,
"methods": [
{
"Method": "GET",
"Rate": 5
"method": "GET",
"rate": 5
}
]
}