Browse Source

Update access-control.adoc (#1837)

Update URL to openzeppelin.com
Andrew B Coathup 6 năm trước cách đây
mục cha
commit
5d2af083cf
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      docs/modules/ROOT/pages/access-control.adoc

+ 1 - 1
docs/modules/ROOT/pages/access-control.adoc

@@ -1,6 +1,6 @@
 = Access Control
 
-Access control—that is, "who is allowed to do this thing"—is incredibly important in the world of smart contracts. The access control of your contract may govern who can mint tokens, vote on proposals, freeze transfers, and many others. It is therefore critical to understand how you implement it, lest someone else https://blog.zeppelin.solutions/on-the-parity-wallet-multisig-hack-405a8c12e8f7[steals your whole system].
+Access control—that is, "who is allowed to do this thing"—is incredibly important in the world of smart contracts. The access control of your contract may govern who can mint tokens, vote on proposals, freeze transfers, and many others. It is therefore critical to understand how you implement it, lest someone else https://blog.openzeppelin.com/on-the-parity-wallet-multisig-hack-405a8c12e8f7[steals your whole system].
 
 [[ownership-and-ownable]]
 == Ownership and `Ownable`