From d2e324bbd42d95b44ec42b4338ecb31e29f7a84f Mon Sep 17 00:00:00 2001 From: Will Ehrendreich <55286472+WillEhrendreich@users.noreply.github.com> Date: Wed, 9 Apr 2025 10:28:18 -0500 Subject: [PATCH] clarification Don't tell Regina George. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 997ab2e..829c898 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ As an example, the signal can be used to show a loading indicator. ```fsharp Elem.button [ - Ds.onClick (Ds.get "/fetchBigData") // make a request to the backend + Ds.onClick (Ds.get "/fetchBigData") // make a request to the backend, making fetch happen Ds.indicator "fetching" // the signal we are creating Ds.attr' ("disabled", "$fetching") // assigns the "disabled" attribute if the `fetching` signal value is true ] [ Text.raw "Fetch!" ]