Skip to content
This repository has been archived by the owner on Oct 14, 2021. It is now read-only.

Comment typo fix #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/BnbStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down