Skip to content

Commit

Permalink
Merge pull request preactjs#84 from filiptammergard/patch-1
Browse files Browse the repository at this point in the history
Fix typo in README.me
  • Loading branch information
rschristian authored Sep 7, 2022
2 parents d5564dd + 4a4e828 commit ec612e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ The signals library exposes four functions which are the building blocks to mode

### `signal(initialValue)`

The `signal` function creates a new signal. A signal is a container for a value that can change over time. You can read a signal's value or subscribe to value updates by accessing the its `.value` property.
The `signal` function creates a new signal. A signal is a container for a value that can change over time. You can read a signal's value or subscribe to value updates by accessing its `.value` property.

```js
import { signal } from "@preact/signals-core";
Expand Down

0 comments on commit ec612e4

Please sign in to comment.