fix a wrong number

This commit is contained in:
Haoliang Yu 2018-04-02 22:22:38 -04:00 committed by GitHub
parent be261ed519
commit 826de65e2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -679,7 +679,7 @@ candidate, resolution fails.
}
}
Calling ``f(50)`` would create a type error since ``250`` can be implicitly converted both to ``uint8``
Calling ``f(50)`` would create a type error since ``50`` can be implicitly converted both to ``uint8``
and ``uint256`` types. On another hand ``f(256)`` would resolve to ``f(uint256)`` overload as ``256`` cannot be implicitly
converted to ``uint8``.