Skip to content

Commit 3aaf64d

Browse files
committed
chore: fix typo in jsdocs
1 parent f7d4711 commit 3aaf64d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/query.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export type ParsedQuery = Record<string, string | string[]>;
2626
* @note
2727
* The `__proto__` and `constructor` keys are ignored to prevent prototype pollution.
2828
*
29-
* @group qeury_utils
29+
* @group Query_utils
3030
*/
3131
export function parseQuery<T extends ParsedQuery = ParsedQuery>(
3232
parametersString = ""
@@ -61,7 +61,7 @@ export function parseQuery<T extends ParsedQuery = ParsedQuery>(
6161
*
6262
* If the value is an array, it will be encoded as multiple key-value pairs with the same key.
6363
*
64-
* @group qeury_utils
64+
* @group Query_utils
6565
*/
6666
export function encodeQueryItem(
6767
key: string,
@@ -86,7 +86,7 @@ export function encodeQueryItem(
8686
/**
8787
* Stringfies and encodes a query object into a query string.
8888
*
89-
* @group qeury_utils
89+
* @group Query_utils
9090
*/
9191
export function stringifyQuery(query: QueryObject): string {
9292
return Object.keys(query)

0 commit comments

Comments
 (0)