From 38fb5470a299162d9f3e1b81f9411bf6e12949a7 Mon Sep 17 00:00:00 2001 From: Jack Hodgkinson <30505104+jhodgdev@users.noreply.github.com> Date: Tue, 8 Feb 2022 09:52:22 +0000 Subject: [PATCH] fixed grammatical error --- docs/tech-design/authority-tokens.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tech-design/authority-tokens.md b/docs/tech-design/authority-tokens.md index 5b9e194..5420775 100644 --- a/docs/tech-design/authority-tokens.md +++ b/docs/tech-design/authority-tokens.md @@ -66,7 +66,7 @@ This approach has a number of benefits but some important details must be kept i Cardano script sizes are restricted to 16KB and previous proposal/effect models have had difficulties generating scripts which keep under this limit. By decoupling proposals and their effects, a proposal can have a far greater number of effects, as all it contains is a list of hashes for said effects. Effects themselves can make any number of changes to the system, as long as the resulting script is kept to an allowable size. -It is essentially impossible for the system to prevent from conflicting effects taking place in short order and harming the system but the likelihood of this occurring is sufficiently reduced by all effects first having be passed by the DAO. There is scope for adding a notion of 'expiration', after which effects will no longer be able to enact their changes. +It is essentially impossible for the system to prevent conflicting effects taking place in short order and harming the system but the likelihood of this occurring is sufficiently reduced by all effects first having be passed by the DAO. There is scope for adding a notion of 'expiration', after which effects will no longer be able to enact their changes. #### Writing effect code requires a _lot_ of care