Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Oct 10, 2023
1 parent 339f1bf commit 68a6dac
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/re_build_tools/src/rebuild_detector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fn should_run() -> bool {

Environment::DeveloperInWorkspace => true,

// Definetly not
// Definitely not
Environment::ProbablyUserMachine => false,
}
}
Expand Down
2 changes: 1 addition & 1 deletion crates/re_viewer/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ fn write_examples_manifest() -> Result<()> {
fn write_examples_manifest_if_necessary() {
use re_build_tools::Environment;
let should_run = match Environment::detect() {
// Can't run in thsese sitatuions, because we can't find `examples/python`.
// Can't run in thsese situations, because we can't find `examples/python`.
Environment::PublishingCrates | Environment::ProbablyUserMachine => false,

// Make sure the manifest reflects what is in `examples/python`.
Expand Down
2 changes: 1 addition & 1 deletion crates/re_web_viewer_server/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fn should_run() -> bool {

Environment::DeveloperInWorkspace => true,

// Definetly not
// Definitely not
Environment::ProbablyUserMachine => false,
}
}
Expand Down
4 changes: 2 additions & 2 deletions examples/rust/objectron/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fn should_run() -> bool {
use re_build_tools::Environment;

match Environment::detect() {
// The code (which is commited) should hopefully already be up-to-date.
// The code (which is committed) should hopefully already be up-to-date.
Environment::PublishingCrates => false,

// No need to run this on CI (which means setting up `protoc` etc)
Expand All @@ -17,7 +17,7 @@ fn should_run() -> bool {
// Sure - let's keep it up-to-date.
Environment::DeveloperInWorkspace => true,

// Definetly not
// Definitely not
Environment::ProbablyUserMachine => false,
}
}
Expand Down

0 comments on commit 68a6dac

Please sign in to comment.