From 9b3c63a6aedd87744fa34760189e1f56271f84f0 Mon Sep 17 00:00:00 2001 From: Victor Berchet Date: Sun, 5 Mar 2023 18:36:03 -0800 Subject: [PATCH] fix a typo in the README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 376ed1f..031c31f 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ To allow developers to try and use different patterns there are a few variants o * effect passes along its initial value or the previoulsy returned one. If this is a function though, it runs it before re-executing, passing along its returned value, if any. - * both `signal(value[, options])` and `computed(fn[, value[, options]])` accept an optionally *options* argument, currently implementing [equals](https://www.solidjs.com/docs/latest#options) as explained in *silid-js* documentation. + * both `signal(value[, options])` and `computed(fn[, value[, options]])` accept an optionally *options* argument, currently implementing [equals](https://www.solidjs.com/docs/latest#options) as explained in *solid-js* documentation. * both *signal* and *computed* also have a `toJSON` and a `valueOf()` allowing to implicitly use their values, e.g.