diff options
author | 2023-07-29 12:32:24 +0200 | |
---|---|---|
committer | 2023-07-29 03:32:24 -0700 | |
commit | 5563be99d33d02f2e7ddc1c3fadcb0cffeee72d8 (patch) | |
tree | 3c4d67e16213cae93d0456390c8115660b22ad33 | |
parent | bcb6dc78060f4309c08b63827b10e3d55632d647 (diff) | |
download | bun-5563be99d33d02f2e7ddc1c3fadcb0cffeee72d8.tar.gz bun-5563be99d33d02f2e7ddc1c3fadcb0cffeee72d8.tar.zst bun-5563be99d33d02f2e7ddc1c3fadcb0cffeee72d8.zip |
fix: small error (#3878)
-rw-r--r-- | docs/runtime/jsx.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/runtime/jsx.md b/docs/runtime/jsx.md index ecf250c82..053c8b01c 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. --- |