From 3536587665b25bc3b13c37dbbe8170a3d4fd13b9 Mon Sep 17 00:00:00 2001 From: David Brailovsky Date: Tue, 30 Nov 2021 17:15:29 +0100 Subject: [PATCH] Fix typo (#2992) --- contracts/governance/README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/governance/README.adoc b/contracts/governance/README.adoc index d388f4e3a..d94602251 100644 --- a/contracts/governance/README.adoc +++ b/contracts/governance/README.adoc @@ -48,7 +48,7 @@ In addition to modules and extensions, the core contract requires a few virtual * <>: Delay (in number of blocks) since the proposal starts until voting ends. * <>: Quorum required for a proposal to be successful. This function includes a `blockNumber` argument so the quorum can adapt through time, for example, to follow a token's `totalSupply`. -NOTE: Functions of the `Governor` contract do not include access control. If you want to restrict access, you should add these checks by overloading the particular functions. Among these, {Governor-_cancel} is internal by default, and you will have to expose it (which the right access control mechanism) yourself if this function is needed. +NOTE: Functions of the `Governor` contract do not include access control. If you want to restrict access, you should add these checks by overloading the particular functions. Among these, {Governor-_cancel} is internal by default, and you will have to expose it (with the right access control mechanism) yourself if this function is needed. === Core