From 05ce9233775e83930e8b54a3c06eb4fb4ba5381a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Niedzi=C3=B3=C5=82ka?= Date: Mon, 21 Nov 2022 20:12:00 +0100 Subject: [PATCH] Add missing quote in `next/script` example --- docs/api-reference/next/script.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-reference/next/script.md b/docs/api-reference/next/script.md index a8f95a41c077..b28a3903af2d 100644 --- a/docs/api-reference/next/script.md +++ b/docs/api-reference/next/script.md @@ -37,7 +37,7 @@ Here's a summary of the props available for the Script Component: | Prop | Example | Values | Required | | ----------------------- | --------------------------------- | -------- | ------------------------------------- | | [`src`](#src) | `src="http://example.com/script"` | String | Required unless inline script is used | -| [`strategy`](#strategy) | `strategy="lazyOnload` | String | Optional | +| [`strategy`](#strategy) | `strategy="lazyOnload"` | String | Optional | | [`onLoad`](#onload) | `onLoad={onLoadFunc}` | Function | Optional | | [`onReady`](#onReady) | `onReady={onReadyFunc}` | Function | Optional | | [`onError`](#onerror) | `onError={onErrorFunc}` | Function | Optional |