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 #2922

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 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 @@ -296,7 +296,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