Skip to content

Commit

Permalink
chore: Fix typos (#720)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgrimaud committed Apr 26, 2020
1 parent 8ed0f50 commit 121f1b7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion js/helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const path = require('path');
const childProcess = require('child_process');

/**
* Absolute path to the sentry-cli binary (platform dependant).
* Absolute path to the sentry-cli binary (platform dependent).
* @type {string}
*/
// istanbul ignore next
Expand Down
4 changes: 2 additions & 2 deletions src/commands/upload_dif.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub fn make_app<'a, 'b: 'a>(app: App<'a, 'b>) -> App<'a, 'b> {
.help(
"Do not scan for debugging information. This will \
usually exclude debug companion files. They might \
still be uploaded, if they contain additonal \
still be uploaded, if they contain additional \
processable information (see other flags).",
)
.conflicts_with("no_unwind"),
Expand All @@ -75,7 +75,7 @@ pub fn make_app<'a, 'b: 'a>(app: App<'a, 'b>) -> App<'a, 'b> {
.help(
"Do not scan for source information. This will \
usually exclude source bundle files. They might \
still be uploaded, if they contain additonal \
still be uploaded, if they contain additional \
processable information (see other flags).",
)
.conflicts_with("no_sources"),
Expand Down
2 changes: 1 addition & 1 deletion src/utils/dif_upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ fn create_source_bundles<'a>(difs: &[DifMatch<'a>]) -> Result<Vec<DifMatch<'a>>,
/// Calls the assemble endpoint and returns the state for every `DifMatch` along
/// with info on missing chunks.
///
/// The returned value containes separate vectors for incomplete DIFs and
/// The returned value contains separate vectors for incomplete DIFs and
/// missing chunks for convenience.
fn try_assemble_difs<'data, 'm>(
difs: &'m [ChunkedDifMatch<'data>],
Expand Down

0 comments on commit 121f1b7

Please sign in to comment.