Skip to content

Commit

Permalink
Fix typos (DA0-DA0#613)
Browse files Browse the repository at this point in the history
* Fix: typos

Fix: typos

* Fix: typos

Fix: typos

* Fix: typo

Fix: typo

* Fix: typo

Fix: typo

* Fix: typos

Fix: typos

* Generate schemas

Co-authored-by: ekez <[email protected]>
  • Loading branch information
omahs and 0xekez authored Jan 10, 2023
1 parent a3a45b9 commit 1a1a151
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ NEXT_PUBLIC_DAO_CONTRACT_ADDRESS=juno1zlmaky7753d2fneyhduwz0rn3u9ns8rse3tudhze8r
NEXT_PUBLIC_V1_FACTORY_CONTRACT_ADDRESS=juno1pvrwmjuusn9wh34j7y520g8gumuy9xtl3gvprlljfdpwju3x7ucssml9ug
```

This output can be directly copy and pased into a `.env` file in the
This output can be directly copied and pasted into a `.env` file in the
[DAO DAO UI](https://github.com/DA0-DA0/dao-dao-ui) for local
development.

Expand Down
2 changes: 1 addition & 1 deletion ci/integration-tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fn new_dao_has_no_items(chain: &mut Chain) {
}
```

We are currentlying
We are currently
[ignoring](https://doc.rust-lang.org/book/ch11-02-running-tests.html#ignoring-some-tests-unless-specifically-requested)
all integration tests by adding the `#[ignore]` annotation to them,
because we want to skip them when people run `cargo test` from the
Expand Down
4 changes: 2 additions & 2 deletions contracts/dao-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ and holds the DAO's treasury.
For more information about how these modules fit together see
[this wiki page](https://github.com/DA0-DA0/dao-contracts/wiki/DAO-DAO-Contracts-Design).

In additon to the wiki spec this contract may also pause. To do so a
`Pause` message must by executed by a proposal module. Pausing the
In addition to the wiki spec this contract may also pause. To do so a
`Pause` message must be executed by a proposal module. Pausing the
core module will stop all actions on the module for the duration of
the pause.

Expand Down
4 changes: 2 additions & 2 deletions contracts/dao-core/schema/dao-core.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
]
},
"initial_items": {
"description": "The items to instantiate this DAO with. Items are arbitrary key-value pairs who's contents are controlled by governance.\n\nIt is an error to provide two items with the same key.",
"description": "The items to instantiate this DAO with. Items are arbitrary key-value pairs whose contents are controlled by governance.\n\nIt is an error to provide two items with the same key.",
"type": [
"array",
"null"
Expand Down Expand Up @@ -312,7 +312,7 @@
"additionalProperties": false
},
{
"description": "Adds an item to the governance contract's item map. If the item already exists the existing value is overriden. If the item does not exist a new item is added.",
"description": "Adds an item to the governance contract's item map. If the item already exists the existing value is overridden. If the item does not exist a new item is added.",
"type": "object",
"required": [
"set_item"
Expand Down
4 changes: 2 additions & 2 deletions contracts/dao-core/src/msg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pub struct InstantiateMsg {
pub proposal_modules_instantiate_info: Vec<ModuleInstantiateInfo>,

/// The items to instantiate this DAO with. Items are arbitrary
/// key-value pairs who's contents are controlled by governance.
/// key-value pairs whose contents are controlled by governance.
///
/// It is an error to provide two items with the same key.
pub initial_items: Option<Vec<InitialItem>>,
Expand Down Expand Up @@ -74,7 +74,7 @@ pub enum ExecuteMsg {
/// Removes an item from the governance contract's item map.
RemoveItem { key: String },
/// Adds an item to the governance contract's item map. If the
/// item already exists the existing value is overriden. If the
/// item already exists the existing value is overridden. If the
/// item does not exist a new item is added.
SetItem { key: String, value: String },
/// Callable by the admin of the contract. If ADMIN is None the
Expand Down

0 comments on commit 1a1a151

Please sign in to comment.