Skip to content

Commit

Permalink
chore: fix typo in jsdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Mar 13, 2024
1 parent f7d4711 commit 3aaf64d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/query.ts
Expand Up @@ -26,7 +26,7 @@ export type ParsedQuery = Record<string, string | string[]>;
* @note
* The `__proto__` and `constructor` keys are ignored to prevent prototype pollution.
*
* @group qeury_utils
* @group Query_utils
*/
export function parseQuery<T extends ParsedQuery = ParsedQuery>(
parametersString = ""
Expand Down Expand Up @@ -61,7 +61,7 @@ export function parseQuery<T extends ParsedQuery = ParsedQuery>(
*
* If the value is an array, it will be encoded as multiple key-value pairs with the same key.
*
* @group qeury_utils
* @group Query_utils
*/
export function encodeQueryItem(
key: string,
Expand All @@ -86,7 +86,7 @@ export function encodeQueryItem(
/**
* Stringfies and encodes a query object into a query string.
*
* @group qeury_utils
* @group Query_utils
*/
export function stringifyQuery(query: QueryObject): string {
return Object.keys(query)
Expand Down

0 comments on commit 3aaf64d

Please sign in to comment.