Commit e21d1432 authored by Carter Carlson's avatar Carter Carlson Committed by GitHub

Proxy.sol constructor docs typo (#9638)

"as" => "has"
parent b37df3e9
...@@ -35,7 +35,7 @@ contract Proxy { ...@@ -35,7 +35,7 @@ contract Proxy {
/// @notice Sets the initial admin during contract deployment. Admin address is stored at the /// @notice Sets the initial admin during contract deployment. Admin address is stored at the
/// EIP-1967 admin storage slot so that accidental storage collision with the /// EIP-1967 admin storage slot so that accidental storage collision with the
/// implementation is not possible. /// implementation is not possible.
/// @param _admin Address of the initial contract admin. Admin as the ability to access the /// @param _admin Address of the initial contract admin. Admin has the ability to access the
/// transparent proxy interface. /// transparent proxy interface.
constructor(address _admin) { constructor(address _admin) {
_changeAdmin(_admin); _changeAdmin(_admin);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment