Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix some typos in comment #708

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Launchpad consists of minter factories, minters, and SG-721 collection contracts

A minter factory is a singleton contract that encapsulates all governance parameters for a type of minter. It's sole responsibility is to instantiate new minters with the latest governance parameters.

Each factory also maintains an inventory of minters it has created, along with a verified, blocked, and explicit status for each. Goverance can vote to verify and block minters.
Each factory also maintains an inventory of minters it has created, along with a verified, blocked, and explicit status for each. Governance can vote to verify and block minters.

### Minters

Expand Down
2 changes: 1 addition & 1 deletion packages/sg2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Common types needed for minter factories. New minter factories should extend these types to add their custom properties.

Every minter requires a factory that stores the minter's governance paramaters. A minter factory creates minters based on these paramaters.
Every minter requires a factory that stores the minter's governance parameters. A minter factory creates minters based on these parameters.

Factories also restrict minters to a set of allowed sg721 code ids.

Expand Down
2 changes: 1 addition & 1 deletion test-suite/src/whitelist/tests/unit_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ fn increase_member_limit() {
assert!(res.is_ok());

// 0 upgrade fee, fails when including a fee
// don't allow updating to the same number of memebers
// don't allow updating to the same number of members
let msg = ExecuteMsg::IncreaseMemberLimit(1002);
let info = mock_info(ADMIN, &[coin(1, "ustars")]);
execute(deps.as_mut(), mock_env(), info, msg).unwrap_err();
Expand Down