Skip to content

Commit

Permalink
chore: fix some typos in comment (#2922)
Browse files Browse the repository at this point in the history
Signed-off-by: linchizhen <[email protected]>
Co-authored-by: glihm <[email protected]>
  • Loading branch information
linchizhen and glihm authored Jan 20, 2025
1 parent af46cb0 commit 0e6e207
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Install the [Cairo 1.0](https://marketplace.visualstudio.com/items?itemName=star

Before you submit your pull request, you should run the test suite locally to make sure your changes haven't broken anything.

To run the test, you can execute the same command that will be exected on the CI by checking the [`.github/workflows/ci.yml`](.github/workflows/ci.yml) file.
To run the test, you can execute the same command that will be executed on the CI by checking the [`.github/workflows/ci.yml`](.github/workflows/ci.yml) file.

```bash
# Run all the tests excluding Katana (due to SiR dependency, they may be run independently)
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo/test-utils/src/compiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ pub fn copy_project_temp(
/// * `path` - The path to the Scarb.toml file to build the config for.
/// * `profile` - The profile to use for the config.
pub fn build_test_config(path: &str, profile: Profile) -> anyhow::Result<Config> {
// If the cache_dir is not overriden, we can't run tests in parallel.
// If the cache_dir is not overridden, we can't run tests in parallel.
let cache_dir = TempDir::new().unwrap();

let path = Utf8PathBuf::from_path_buf(path.into()).unwrap();
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo/world/src/contracts/contract_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub struct ContractInfo {
pub tag: String,
/// The address of the contract.
pub address: Felt,
/// The entrypoints that can be targetted with a transaction.
/// The entrypoints that can be targeted with a transaction.
/// This only includes `external` functions.
pub entrypoints: Vec<String>,
}
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo/world/src/local/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ pub struct WorldLocal {
/// The profile configuration of the local world.
pub profile_config: ProfileConfig,
/// All the entrypoints that are exposed by the world
/// and can be targetted by a transaction.
/// and can be targeted by a transaction.
pub entrypoints: Vec<String>,
}

Expand Down

0 comments on commit 0e6e207

Please sign in to comment.