Skip to content

Commit e3c655b

Browse files
committed
.
1 parent cf23087 commit e3c655b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/docs/foundations/errors-and-retries.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ async function callApi(endpoint: string) {
108108
const response = await fetch(endpoint);
109109

110110
if (response.status >= 500) {
111-
// Exponential backoffs (in milliseconds)
111+
// Exponential backoffs
112112
throw new RetryableError("Backing off...", {
113113
retryAfter: (metadata.attempt ** 2) * 1000, // [!code highlight]
114114
});

0 commit comments

Comments
 (0)