From fdbbbcf49bcdbf97466d6388e41f55bf9f3d32f9 Mon Sep 17 00:00:00 2001 From: Dexaran Date: Thu, 23 Sep 2021 21:51:12 +0400 Subject: [PATCH] Comment typo fix --- contracts/BnbStaking.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/BnbStaking.sol b/contracts/BnbStaking.sol index 84bc165..3a6939a 100644 --- a/contracts/BnbStaking.sol +++ b/contracts/BnbStaking.sol @@ -51,7 +51,7 @@ contract BnbStaking is Ownable { mapping (address => UserInfo) public userInfo; // limit 10 BNB here uint256 public limitAmount = 10000000000000000000; - // Total allocation poitns. Must be the sum of all allocation points in all pools. + // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when CAKE mining starts. uint256 public startBlock;