Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fixed a few minor typos
  • Loading branch information
bnzone authored Nov 13, 2024
1 parent d4adbb0 commit 039a883
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,7 @@ const { data, error } = await fetchye(key, options, fetcher);
|----------|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `data` | `Object` | A result of a `fetchClient` query. *Defaults to returning `{ status, body, ok, headers }` from `fetchClient` response* |
| `error?` | `Object` | An object containing an error if present. *Defaults to an `Error` object with a thrown `fetch` error. This is not for API errors (e.g. Status 500 or 400). See `data` for that* |
| `run` | `async () => {}` | A function for bypassing the cache and firing an API call. Can we awaited. |
| `run` | `async () => {}` | A function for bypassing the cache and firing an API call. Can be awaited. |
### `makeOneServerFetchye`
Expand Down Expand Up @@ -926,7 +926,7 @@ const { data, error } = await fetchye(key, options, fetcher);
|----------|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `data` | `Object` | A result of a `fetchClient` query. *Defaults to returning `{ status, body, ok, headers }` from `fetchClient` response* |
| `error?` | `Object` | An object containing an error if present. *Defaults to an `Error` object with a thrown `fetch` error. This is not for API errors (e.g. Status 500 or 400). See `data` for that* |
| `run` | `async () => {}` | A function for bypassing the cache and firing an API call. Can we awaited. |
| `run` | `async () => {}` | A function for bypassing the cache and firing an API call. Can be awaited. |
### oneFetchye
Expand Down Expand Up @@ -954,7 +954,7 @@ A promise resolving to an object with the below keys:
|----------|------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `data` | `Object` | A result of a `fetchClient` query. *Defaults to returning `{ status, body, ok, headers }` from `fetchClient` response* |
| `error?` | `Object` | An object containing an error if present. *Defaults to an `Error` object with a thrown `fetch` error. This is not for API errors (e.g. Status 500 or 400). See `data` for that* |
| `run` | `async () => {}` | A function for bypassing the cache and firing an API call. Can we awaited. |
| `run` | `async () => {}` | A function for bypassing the cache and firing an API call. Can be awaited. |
### Providers
Expand Down

0 comments on commit 039a883

Please sign in to comment.