From 5563be99d33d02f2e7ddc1c3fadcb0cffeee72d8 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Sat, 29 Jul 2023 12:32:24 +0200 Subject: [PATCH] fix: small error (#3878) --- docs/runtime/jsx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/runtime/jsx.md b/docs/runtime/jsx.md index ecf250c827..053c8b01c1 100644 --- a/docs/runtime/jsx.md +++ b/docs/runtime/jsx.md @@ -77,7 +77,7 @@ How JSX constructs are transformed into vanilla JavaScript internally. The table ); ``` - The `jsxDEV` variable name is a convention used by React. The `DEV` suffix is a visible way to indicate that the code is intended for use in development. The development version of React is slowers and includes additional validity checks & debugging tools. + The `jsxDEV` variable name is a convention used by React. The `DEV` suffix is a visible way to indicate that the code is intended for use in development. The development version of React is slower and includes additional validity checks & debugging tools. ---