From fcde4887e27f0bd6a582c8c2f9628b3ec9150b7c Mon Sep 17 00:00:00 2001 From: Rob Schaefer Date: Fri, 13 Sep 2024 08:01:53 -0600 Subject: [PATCH] Update web_sys.md (#117) Correct small typo. --- src/web_sys.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web_sys.md b/src/web_sys.md index 8e213b4..7e826a8 100644 --- a/src/web_sys.md +++ b/src/web_sys.md @@ -27,7 +27,7 @@ If there is a JavaScript library that you want to call from Rust, you should ref easy to import individual functions, classes, or values from JavaScript to use in your Rust app. It is not always easy to integrate JS libraries into your app directly. In particular, any library that depends on a -particular JS framework like React may be hard to integrated. Libraries that manipulate DOM state in some way (for example, +particular JS framework like React may be hard to integrate. Libraries that manipulate DOM state in some way (for example, rich text editors) should also be used with care: both Leptos and the JS library will probably assume that they are the ultimate source of truth for the app’s state, so you should be careful to separate their responsibilities.