aboutsummaryrefslogtreecommitdiffstats
path: root/docs/types.rst
diff options
context:
space:
mode:
authorJim McDonald <Jim@mcdee.net>2017-12-13 15:55:46 +0800
committerJim McDonald <Jim@mcdee.net>2017-12-13 15:55:46 +0800
commit93cf4dee666e01d6907c75c4018a701e5069daad (patch)
tree8c3732c7a5961c00bee6adb3f916b99744c65bf7 /docs/types.rst
parent6e521d59b0a30fa0673aaf84559d5b74dbb1eed7 (diff)
downloaddexon-solidity-93cf4dee666e01d6907c75c4018a701e5069daad.tar.gz
dexon-solidity-93cf4dee666e01d6907c75c4018a701e5069daad.tar.zst
dexon-solidity-93cf4dee666e01d6907c75c4018a701e5069daad.zip
Fixes for failing tests
Diffstat (limited to 'docs/types.rst')
-rw-r--r--docs/types.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/types.rst b/docs/types.rst
index fbebb1aa..98009b3f 100644
--- a/docs/types.rst
+++ b/docs/types.rst
@@ -649,7 +649,7 @@ assigned to a variable right away.
function f() public pure {
g([uint(1), 2, 3]);
}
- function g(uint[3] _data) public {
+ function g(uint[3] _data) public pure {
// ...
}
}