From c0a06bbd20e1621de46ab835dd27df162f689411 Mon Sep 17 00:00:00 2001 From: Conor Power <94084298+conor-23@users.noreply.github.com> Date: Fri, 26 Apr 2024 07:36:48 +0300 Subject: [PATCH] fix(lattices):typos in lattice docs (#1174) --- lattices/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lattices/README.md b/lattices/README.md index 325e5a70f7e0..48890295b17a 100644 --- a/lattices/README.md +++ b/lattices/README.md @@ -1,13 +1,13 @@

The lattices Crate

-The `lattices` crate provides ergonomic and compsable lattice types. You can also implement custom +The `lattices` crate provides ergonomic and composable lattice types. You can also implement custom lattices via a few simple traits. Lattices are an incredibly powerful mathematical concept which can greatly simplify the trickiness of distributed computing. They align very well with the reality of what happens physically in a -distrubted system: messages can always arrive out-of-order or duplicated. But if that data is +distributed system: messages can always arrive out-of-order or duplicated. But if that data is represented as lattices then all machines will always reach the same end result simply by merging the data together. -One popular way of lattices are currently used in distributed systems is as the data underlying +One popular way that lattices are currently used in distributed systems is as the data underlying [Conflict-free Replicated Data Types](https://en.wikipedia.org/wiki/Conflict-free_replicated_data_type) (CRDTs).