From ced204066198a695cc633d71358676fdc24c14b3 Mon Sep 17 00:00:00 2001 From: VFLC Date: Wed, 30 Mar 2022 21:42:36 +0800 Subject: [PATCH] docs: fix typo in Script Component docs (#35731) Added missing closing double quote : `strategy="worker` -> `strategy="worker"` ## Bug - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Errors have helpful link attached, see `contributing.md` ## Feature - [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR. - [ ] Related issues linked using `fixes #number` - [ ] Integration tests added - [ ] Documentation added - [ ] Telemetry added. In case of a feature if it's used or not. - [ ] Errors have helpful link attached, see `contributing.md` ## Documentation / Examples - [ ] Make sure the linting passes by running `yarn lint` --- docs/basic-features/script.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basic-features/script.md b/docs/basic-features/script.md index 1f9806415d43..0c2a142c0e81 100644 --- a/docs/basic-features/script.md +++ b/docs/basic-features/script.md @@ -154,7 +154,7 @@ npm run dev # ... ``` -Once setup is complete, defining `strategy="worker` will automatically instantiate Partytown in your application and off-load the script to a web worker. +Once setup is complete, defining `strategy="worker"` will automatically instantiate Partytown in your application and off-load the script to a web worker. ```jsx