From ffdde4ac3eadf0bcfe2cb25f1e6cf5ce1701ebc7 Mon Sep 17 00:00:00 2001 From: Artie Gold Date: Sun, 28 Oct 2012 15:53:36 -0500 Subject: [PATCH] Small text fix. It's "its" not "it's" here. --- docs/writing/structure.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/writing/structure.rst b/docs/writing/structure.rst index 76d0b08..b89944a 100644 --- a/docs/writing/structure.rst +++ b/docs/writing/structure.rst @@ -251,7 +251,7 @@ Another way to say the same thing is to suggest using functions and procedures with as few implicit contexts and side-effects as possible. A function's implicit context is made up of any of the global variables or items in the persistence layer that are accessed from within the function. Side-effects are the changes that a function makes -to it's implicit context. If a function saves or deletes data in a global variable or +to its implicit context. If a function saves or deletes data in a global variable or in the persistence layer, it is said to have a side-effect. Carefully isolating functions with context and side-effects from functions with