Skip to content

Commit c8c5e7f

Browse files
authored
[ BB2-1493 ] Fix camel to snake_case vars (#18)
1 parent 76545c4 commit c8c5e7f

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ The exponential backoff factor (in seconds) is used to calculate interval betwee
5959

6060
Example:
6161

62-
A`backoff_factor` of 5 seconds generates the wait intervals: 2.5, 5, 10, ...
62+
A `backoff_factor` of 5 seconds generates the wait intervals: 2.5, 5, 10, ...
6363

6464
To disable the retry, set `total = 0`
6565

@@ -79,9 +79,9 @@ Sample configuration JSON with default version and environment:
7979

8080
```
8181
{
82-
"clientId": "foo",
83-
"clientSecret": "bar",
84-
"callbackUrl": "https://www.fake.com/",
82+
"client_id": "foo",
83+
"client_secret": "bar",
84+
"callback_url": "https://www.fake.com/",
8585
}
8686
8787
```
@@ -92,9 +92,9 @@ Example:
9292

9393
```
9494
{
95-
"clientId": "foo",
96-
"clientSecret": "bar",
97-
"callbackUrl": "https://www.fake.com/",
95+
"client_id": "foo",
96+
"client_secret": "bar",
97+
"callback_url": "https://www.fake.com/",
9898
"version": "2",
9999
"environment": "PRODUCTION"
100100
}

0 commit comments

Comments
 (0)