From f2372e26630bbd9535678b30ddd723b17f6da2ea Mon Sep 17 00:00:00 2001 From: dleon <65613731+dleonx@users.noreply.github.com> Date: Wed, 2 Mar 2022 22:37:22 -0500 Subject: [PATCH] Fixed typo --- content/intro/systems/impl_systems.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/intro/systems/impl_systems.md b/content/intro/systems/impl_systems.md index feec70378..e8a7d6707 100644 --- a/content/intro/systems/impl_systems.md +++ b/content/intro/systems/impl_systems.md @@ -41,7 +41,7 @@ For this purpose, we use the `FilecoinNode` data structure, which is passed into Further, Systems MUST abide by the following limitations: - **Random crashes.** A Filecoin Node may crash at any moment. Systems must be secure and consistent through crashes. - This is primarily achived by limiting the use of persistent state, persisting such state through Ipld data structures, + This is primarily achieved by limiting the use of persistent state, persisting such state through Ipld data structures, and through the use of initialization routines that check state, and perhaps correct errors. - **Isolation.** Systems must communicate over well-defined, isolated interfaces. They must not build their critical functionality over a shared memory space. (Note: for performance, shared memory abstractions can be used to power