diff options
author | Cryptomental <cryptomental.com@gmail.com> | 2018-07-10 15:18:59 +0800 |
---|---|---|
committer | Cryptomental <cryptomental.com@gmail.com> | 2018-07-11 06:26:23 +0800 |
commit | 140dbfdbd8f4319d1d02339feea0a8636a3738e5 (patch) | |
tree | 7ab4a06da70cde7c253a1a0c82ccc085bf76efd5 /libsolidity/ast/AST.h | |
parent | 4116704442aff035acb5b707c6b211ac1f5524fe (diff) | |
download | dexon-solidity-140dbfdbd8f4319d1d02339feea0a8636a3738e5.tar.gz dexon-solidity-140dbfdbd8f4319d1d02339feea0a8636a3738e5.tar.zst dexon-solidity-140dbfdbd8f4319d1d02339feea0a8636a3738e5.zip |
Code, Changelog, ReleaseChecklist: Fix typos.
Refs: #4442
Diffstat (limited to 'libsolidity/ast/AST.h')
-rw-r--r-- | libsolidity/ast/AST.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libsolidity/ast/AST.h b/libsolidity/ast/AST.h index 9906fa68..e862fd62 100644 --- a/libsolidity/ast/AST.h +++ b/libsolidity/ast/AST.h @@ -1169,11 +1169,11 @@ public: Statement const& body() const { return *m_body; } private: - /// For statement's initialization expresion. for(XXX; ; ). Can be empty + /// For statement's initialization expression. for(XXX; ; ). Can be empty ASTPointer<Statement> m_initExpression; - /// For statement's condition expresion. for(; XXX ; ). Can be empty + /// For statement's condition expression. for(; XXX ; ). Can be empty ASTPointer<Expression> m_condExpression; - /// For statement's loop expresion. for(;;XXX). Can be empty + /// For statement's loop expression. for(;;XXX). Can be empty ASTPointer<ExpressionStatement> m_loopExpression; /// The body of the loop ASTPointer<Statement> m_body; |