Fix some typo

Update extensions/git/src/api/git.d.ts

Fix another typo

Fix some typo
This commit is contained in:
laphets
2018-10-18 10:25:12 +08:00
parent d99dea11d1
commit d24031bf45
3 changed files with 10 additions and 10 deletions

View File

@@ -26,9 +26,9 @@ export interface Ref {
readonly remote?: string;
}
export interface Trackingship {
export interface TrackingShip {
readonly local: string;
readonly upstarem: string;
readonly upstream: string;
}
export interface UpstreamRef {
@@ -175,4 +175,4 @@ export const enum GitErrorCodes {
WrongCase = 'WrongCase',
CantLockRef = 'CantLockRef',
CantRebaseMultipleBranches = 'CantRebaseMultipleBranches',
}
}