From a1457aa78f94e38887d80e9fc754fb6a758b0269 Mon Sep 17 00:00:00 2001 From: Dharshan <110713600+dharshan-0@users.noreply.github.com> Date: Sun, 9 Nov 2025 21:55:31 +0530 Subject: [PATCH] Fix typo: 'eversing' to 'reversing' in documentation --- .../importing-and-reusing-components/javascript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/component-model/src/language-support/importing-and-reusing-components/javascript.md b/component-model/src/language-support/importing-and-reusing-components/javascript.md index 5fb31826..01f23f50 100644 --- a/component-model/src/language-support/importing-and-reusing-components/javascript.md +++ b/component-model/src/language-support/importing-and-reusing-components/javascript.md @@ -8,7 +8,7 @@ Just as `export`ing functionality is core to building useful WebAssembly compone Restated, **WIT and the Component Model enable WebAssembly to *compose***. This means we can build on top of functionality that already exists and `export` *new* functionality that depends on existing functionality. -Let's say in addition to eversing the string (in the previous example), +Let's say in addition to reversing the string (in the previous example), we want to build shared functionality that *also* upper-cases the text it receives. We can reuse the reversing functionality *and* export a new interface which enables us to reverse and upper-case.