Skip to content

Commit

Permalink
Fix capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed May 18, 2020
1 parent f3e25ec commit 71442cb
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class GitExtension implements IGitExtension {
}

/**
* A signal emitted when the HEAD of the git repository changes.
* A signal emitted when the HEAD of the Git repository changes.
*/
get headChanged(): ISignal<IGitExtension, void> {
return this._headChanged;
Expand Down Expand Up @@ -119,7 +119,7 @@ export class GitExtension implements IGitExtension {
}

/**
* A signal emitted when the current marking of the git repository changes.
* A signal emitted when the current marking of the Git repository changes.
*/
get markChanged(): ISignal<IGitExtension, void> {
return this._markChanged;
Expand Down Expand Up @@ -179,7 +179,7 @@ export class GitExtension implements IGitExtension {
}

/**
* A signal emitted when the current git repository changes.
* A signal emitted when the current Git repository changes.
*/
get repositoryChanged(): ISignal<IGitExtension, IChangedArgs<string | null>> {
return this._repositoryChanged;
Expand Down Expand Up @@ -249,7 +249,7 @@ export class GitExtension implements IGitExtension {
new Response(
JSON.stringify({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
})
)
);
Expand Down Expand Up @@ -284,7 +284,7 @@ export class GitExtension implements IGitExtension {
new Response(
JSON.stringify({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
})
)
);
Expand Down Expand Up @@ -378,7 +378,7 @@ export class GitExtension implements IGitExtension {
if (path === null) {
return Promise.resolve({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
});
}

Expand Down Expand Up @@ -416,7 +416,7 @@ export class GitExtension implements IGitExtension {
if (path === null) {
return Promise.resolve({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
});
}

Expand Down Expand Up @@ -508,7 +508,7 @@ export class GitExtension implements IGitExtension {
new Response(
JSON.stringify({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
})
)
);
Expand Down Expand Up @@ -548,7 +548,7 @@ export class GitExtension implements IGitExtension {
new Response(
JSON.stringify({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
})
)
);
Expand Down Expand Up @@ -586,7 +586,7 @@ export class GitExtension implements IGitExtension {
new Response(
JSON.stringify({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
})
)
);
Expand Down Expand Up @@ -622,7 +622,7 @@ export class GitExtension implements IGitExtension {
if (path === null) {
return Promise.resolve({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
});
}

Expand Down Expand Up @@ -744,7 +744,7 @@ export class GitExtension implements IGitExtension {
if (path === null) {
return Promise.resolve({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
});
}

Expand Down Expand Up @@ -779,7 +779,7 @@ export class GitExtension implements IGitExtension {
if (path === null) {
return Promise.resolve({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
});
}

Expand Down Expand Up @@ -880,7 +880,7 @@ export class GitExtension implements IGitExtension {
new Response(
JSON.stringify({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
})
)
);
Expand Down Expand Up @@ -921,7 +921,7 @@ export class GitExtension implements IGitExtension {
new Response(
JSON.stringify({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
})
)
);
Expand Down Expand Up @@ -991,7 +991,7 @@ export class GitExtension implements IGitExtension {
if (path === null) {
return Promise.resolve({
code: -1,
message: 'Not in a git repository.'
message: 'Not in a Git repository.'
});
}

Expand Down

0 comments on commit 71442cb

Please sign in to comment.