mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
fix typo
This commit is contained in:
@@ -2429,7 +2429,7 @@ FunctionType::FunctionType(VariableDeclaration const& _varDecl):
|
||||
else if (auto arrayType = dynamic_cast<ArrayType const*>(returnType.get()))
|
||||
{
|
||||
if (arrayType->isByteArray())
|
||||
// Return byte arrays as as whole.
|
||||
// Return byte arrays as whole.
|
||||
break;
|
||||
returnType = arrayType->baseType();
|
||||
m_parameterNames.push_back("");
|
||||
|
||||
@@ -174,7 +174,7 @@ public:
|
||||
/// Will not contain any character which would be invalid as an identifier.
|
||||
std::string identifier() const;
|
||||
|
||||
/// More complex identifier strings use "parentheses", where $_ is interpreted as as
|
||||
/// More complex identifier strings use "parentheses", where $_ is interpreted as
|
||||
/// "opening parenthesis", _$ as "closing parenthesis", _$_ as "comma" and any $ that
|
||||
/// appears as part of a user-supplied identifier is escaped as _$$$_.
|
||||
/// @returns an escaped identifier (will not contain any parenthesis or commas)
|
||||
|
||||
Reference in New Issue
Block a user