Skip to content

Commit 32d889f

Browse files
committed
docs: Fix typo
1 parent 743fabf commit 32d889f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Crystalize.js
1111

12-
The Crystalize.js library is your magic wand for data wizardry, introducing a methodology for data management: "Crystals" and their foundational building blocks, "Shards". Think of a "Crystal" as an iceberg, immutably capturing the essence of time and tales, representing a culmination of data or states. Imagine "Shards" as the droplets that over time, meld to craft these icebergs. Now imagine that you could turn back the clock, and see the formation of the iceberg at different points in its history.
12+
The Crystalize.js library is your magic wand for data wizardry, introducing a methodology for data management: "Crystals" and their foundational building blocks, "Shards". Think of a "Crystal" as an iceberg, immutably capturing the essence of time and tales, representing a culmination of data or states. Imagine "Shards" as the droplets that over time, meld to craft these icebergs. Now imagine that you could turn back the clock, and see the formation of the iceberg at different points in its history.
1313

1414
That is Crystalize.js. It's like a reducer on steroids, but if reducers had undo/redo and time-travel.
1515

@@ -188,7 +188,7 @@ console.log(crystalizer.last); // { value: 1 }
188188
Since Crystalize.js is written in Typescript, your LSP can make use of the types, and you can constrain which types to be used as Crystals and Shards.
189189

190190
```typescript
191-
new Crystalyzer<Crystal, Shard>({ ... })
191+
new Crystalizer<Crystal, Shard>({ ... })
192192

193193
// to match the Basic Usage example above,
194194
new Crystalizer<{ total: number}, { value: number }>({ ... })

0 commit comments

Comments
 (0)