aboutsummaryrefslogtreecommitdiffstats
path: root/docs/style-guide.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/style-guide.rst')
-rw-r--r--docs/style-guide.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/style-guide.rst b/docs/style-guide.rst
index fe17658c..332b1ba6 100644
--- a/docs/style-guide.rst
+++ b/docs/style-guide.rst
@@ -252,7 +252,7 @@ No::
for (...) {
...;}
-For control structures who's body contains a single statement, omitting the
+For control structures whose body contains a single statement, omitting the
braces is ok *if* the statement is contained on a single line.
Yes::
@@ -445,7 +445,7 @@ No::
doSomething();
}
-For constructor functions on inherited contracts who's bases require arguments,
+For constructor functions on inherited contracts whose bases require arguments,
it is recommended to drop the base constructors onto new lines in the same
manner as modifiers if the function declaration is long or hard to read.