Fix new found spelling mistakes and add exceptions

This commit is contained in:
Mathias Baumann
2019-05-21 10:59:34 +02:00
parent e324deabd6
commit cbf81b123a
5 changed files with 10 additions and 4 deletions
+1 -1
View File
@@ -371,7 +371,7 @@ contract provider is module, safeMath, announcementTypes {
}
function allowUsers(address provider, address[] calldata addr) isReady external {
/*
Permition of the user to be able to connect to the provider.
Permission of the user to be able to connect to the provider.
This can only be invited by the providers admin.
With this kind of call only 100 address can be permitted.
+1 -1
View File
@@ -13518,7 +13518,7 @@ BOOST_AUTO_TEST_CASE(bare_call_invalid_address)
{
char const* sourceCode = R"YY(
contract C {
/// Calling into non-existant account is successful (creates the account)
/// Calling into non-existent account is successful (creates the account)
function f() external returns (bool) {
(bool success,) = address(0x4242).call("");
return success;