Skip to content

Commit

Permalink
📝 update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed May 18, 2024
1 parent d3d8b68 commit 2ffefd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ over this huge [List].
expect(
QS.decode('a[100]=b'),
equals({
'a': {100: 'b'}
'a': {'100': 'b'}
}),
);
```
Expand All @@ -397,7 +397,7 @@ expect(
const DecodeOptions(listLimit: 0),
),
equals({
'a': {1: 'b'}
'a': {'1': 'b'}
}),
);
```
Expand All @@ -411,7 +411,7 @@ expect(
const DecodeOptions(parseLists: false),
),
equals({
'a': {0: 'b'}
'a': {'0': 'b'}
}),
);
```
Expand All @@ -422,7 +422,7 @@ If you mix notations, [decode] will merge the two items into a [Map]:
expect(
QS.decode('a[0]=b&a[b]=c'),
equals({
'a': {0: 'b', 'b': 'c'}
'a': {'0': 'b', 'b': 'c'}
}),
);
```
Expand Down

0 comments on commit 2ffefd2

Please sign in to comment.