Skip to content

Commit

Permalink
Fix Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Yohix committed Mar 4, 2020
1 parent 6e4371b commit ff8e9d9
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion source/ci_source/providers/Codefresh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import { ensureEnvKeysExist, ensureEnvKeysAreInt } from "../ci_source_helpers"
* - success
* ```
*
* The `failOnErrors` option is required in order to ensure that the step fails properly when Danger fails. If you don't wnat this behavior, you can remove this option.
* The `failOnErrors` option is required in order to ensure that the step fails properly when Danger fails. If you don't want this behavior, you can remove this option.
*
* Don't forget to add the `DANGER_GITHUB_API_TOKEN` variable to your pipeline settings so that Danger can properly post comments to your pull request.
*
Expand Down
2 changes: 1 addition & 1 deletion source/danger-incoming-process-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"type": "number"
},
"committer": {
"description": "The author of the commit, assumed to be the person who commited/merged the code into a project.",
"description": "The author of the commit, assumed to be the person who committed/merged the code into a project.",
"properties": {
"displayName": {
"description": "The display name of the commit committer",
Expand Down
12 changes: 6 additions & 6 deletions source/danger.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ interface BitBucketCloudCommit {
user: BitBucketCloudUser
}

/** When the commit was commited to the project, in ISO 8601 format */
/** When the commit was committed to the project, in ISO 8601 format */
date: string
/** The commit's message */
message: string
Expand Down Expand Up @@ -301,7 +301,7 @@ interface BitBucketServerCommit {
}
/** The UNIX timestamp for when the commit was authored */
authorTimestamp: number
/** The author of the commit, assumed to be the person who commited/merged the code into a project. */
/** The author of the commit, assumed to be the person who committed/merged the code into a project. */
committer: {
/** The id of the commit committer */
name: string
Expand All @@ -310,7 +310,7 @@ interface BitBucketServerCommit {
/** The email of the commit committer */
emailAddress: string
}
/** When the commit was commited to the project */
/** When the commit was committed to the project */
committerTimestamp: number
/** The commit's message */
message: string
Expand All @@ -324,9 +324,9 @@ interface BitBucketServerCommit {
}

interface BitBucketServerDiff {
/** The file refrence when moved */
/** The file reference when moved */
destination?: BitBucketServerFile
/** The original file refrence */
/** The original file reference */
source?: BitBucketServerFile
/** A set of diff changes */
hunks: BitBucketServerHunk[]
Expand Down Expand Up @@ -1735,7 +1735,7 @@ declare function message(message: MarkdownString, file?: string, line?: number):
/**
* Adds a message to the Danger table, the only difference between this
* and warn is the default emoji which shows in the table.
* You can also specifiy a custom emoji to show in the table for each message
* You can also specify a custom emoji to show in the table for each message
*
* @param {MarkdownString} message the String to output
* @param {{file?: string, line?: string, icon?: MarkdownString}} [opts]
Expand Down
2 changes: 1 addition & 1 deletion source/dsl/BitBucketCloudDSL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export interface BitBucketCloudCommit {
user: BitBucketCloudUser
}

/** When the commit was commited to the project, in ISO 8601 format */
/** When the commit was committed to the project, in ISO 8601 format */
date: string
/** The commit's message */
message: string
Expand Down
8 changes: 4 additions & 4 deletions source/dsl/BitBucketServerDSL.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export interface BitBucketServerCommit {
}
/** The UNIX timestamp for when the commit was authored */
authorTimestamp: number
/** The author of the commit, assumed to be the person who commited/merged the code into a project. */
/** The author of the commit, assumed to be the person who committed/merged the code into a project. */
committer: {
/** The id of the commit committer */
name: string
Expand All @@ -137,7 +137,7 @@ export interface BitBucketServerCommit {
/** The email of the commit committer */
emailAddress: string
}
/** When the commit was commited to the project */
/** When the commit was committed to the project */
committerTimestamp: number
/** The commit's message */
message: string
Expand All @@ -151,9 +151,9 @@ export interface BitBucketServerCommit {
}

export interface BitBucketServerDiff {
/** The file refrence when moved */
/** The file reference when moved */
destination?: BitBucketServerFile
/** The original file refrence */
/** The original file reference */
source?: BitBucketServerFile
/** A set of diff changes */
hunks: BitBucketServerHunk[]
Expand Down

0 comments on commit ff8e9d9

Please sign in to comment.