Skip to content

Commit

Permalink
Merge 7655ed0 into c60aac1
Browse files Browse the repository at this point in the history
  • Loading branch information
dlarocque authored Jul 2, 2024
2 parents c60aac1 + 7655ed0 commit ada8ee5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs-devsite/vertexai-preview.errordetails.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export interface ErrorDetails
| Property | Type | Description |
| --- | --- | --- |
| ["@type"](./vertexai-preview.errordetails.md#errordetails"@type") | string | |
| [domain](./vertexai-preview.errordetails.md#errordetailsdomain) | string | The domain where the error occured. |
| [metadata](./vertexai-preview.errordetails.md#errordetailsmetadata) | Record<string, unknown> | Additonal metadata about the error. |
| [domain](./vertexai-preview.errordetails.md#errordetailsdomain) | string | The domain where the error occurred. |
| [metadata](./vertexai-preview.errordetails.md#errordetailsmetadata) | Record<string, unknown> | Additional metadata about the error. |
| [reason](./vertexai-preview.errordetails.md#errordetailsreason) | string | The reason for the error. |

## ErrorDetails."@type"
Expand All @@ -37,7 +37,7 @@ export interface ErrorDetails

## ErrorDetails.domain

The domain where the error occured.
The domain where the error occurred.

<b>Signature:</b>

Expand All @@ -47,7 +47,7 @@ domain?: string;

## ErrorDetails.metadata

Additonal metadata about the error.
Additional metadata about the error.

<b>Signature:</b>

Expand Down
4 changes: 2 additions & 2 deletions packages/vertexai/src/types/error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ export interface ErrorDetails {
/** The reason for the error. */
reason?: string;

/** The domain where the error occured. */
/** The domain where the error occurred. */
domain?: string;

/** Additonal metadata about the error. */
/** Additional metadata about the error. */
metadata?: Record<string, unknown>;

/** Any other relevant information about the error. */
Expand Down

0 comments on commit ada8ee5

Please sign in to comment.