Skip to content

Commit 4f4dc17

Browse files
committed
docs(lib): fix readme codeblock escape
1 parent 9e59b4c commit 4f4dc17

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919

2020
## INSTALLATION
2121

22-
\```bash
22+
```bash
2323
npm install @chronicstone/array-query
2424
yarn add @chronicstone/array-query
2525
pnpm add @chronicstone/array-query
2626
bun add @chronicstone/array-query
27-
\```
27+
```
2828

2929
## USAGE EXAMPLE
3030

31-
\```ts
31+
```ts
3232
import { query } from '@chronicstone/array-query'
3333

3434
const users = [
@@ -61,7 +61,7 @@ const { totalRows, totalPages, rows } = query(users, {
6161
{ key: 'age', matchMode: 'greaterThan', value: 25 },
6262
]
6363
})
64-
\```
64+
```
6565

6666
This example demonstrates pagination, multi-field sorting, full-text searching, and complex filtering with nested conditions and array field matching.
6767

0 commit comments

Comments
 (0)