aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchriseth <c@ethdev.com>2016-05-20 22:48:09 +0800
committerchriseth <c@ethdev.com>2016-05-20 22:48:09 +0800
commit0d7ef65f6815df8eb5535bc9e9d81c6450d65623 (patch)
tree27ae91293ef70d6320fd3be88b11ad673f62ffd3
parentae8402915793b19b73567548226330d7a20b3500 (diff)
parentae677c1e316e826523f49144c7e874027e7461d8 (diff)
downloaddexon-solidity-0d7ef65f6815df8eb5535bc9e9d81c6450d65623.tar
dexon-solidity-0d7ef65f6815df8eb5535bc9e9d81c6450d65623.tar.gz
dexon-solidity-0d7ef65f6815df8eb5535bc9e9d81c6450d65623.tar.bz2
dexon-solidity-0d7ef65f6815df8eb5535bc9e9d81c6450d65623.tar.lz
dexon-solidity-0d7ef65f6815df8eb5535bc9e9d81c6450d65623.tar.xz
dexon-solidity-0d7ef65f6815df8eb5535bc9e9d81c6450d65623.tar.zst
dexon-solidity-0d7ef65f6815df8eb5535bc9e9d81c6450d65623.zip
Merge pull request #587 from redsquirrel/patch-3
Typo fix in documentation
-rw-r--r--docs/control-structures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/control-structures.rst b/docs/control-structures.rst
index 15effb78..4b2363f5 100644
--- a/docs/control-structures.rst
+++ b/docs/control-structures.rst
@@ -280,7 +280,7 @@ idea is that assembly libraries will be used to enhance the language in such way
}
}
-Inline assemmbly could also be beneficial in cases where the optimizer fails to produce
+Inline assembly could also be beneficial in cases where the optimizer fails to produce
efficient code. Please be aware that assembly is much more difficult to write because
the compiler does not perform checks, so you should use it for complex things only if
you really know what you are doing.