Changes sha terminology to commit id

This commit is contained in:
Eric Amodio
2017-04-09 10:58:42 -04:00
parent 2a9b274920
commit 0854e0bcfb
6 changed files with 10 additions and 10 deletions

View File

@@ -47,7 +47,7 @@ export class CopyShaToClipboardCommand extends ActiveEditorCommand {
}
catch (ex) {
Logger.error(ex, 'CopyShaToClipboardCommand', `getBlameForLine(${blameline})`);
return window.showErrorMessage(`Unable to copy sha. See output channel for more details`);
return window.showErrorMessage(`Unable to copy commit id. See output channel for more details`);
}
}
@@ -56,7 +56,7 @@ export class CopyShaToClipboardCommand extends ActiveEditorCommand {
}
catch (ex) {
Logger.error(ex, 'CopyShaToClipboardCommand');
return window.showErrorMessage(`Unable to copy sha. See output channel for more details`);
return window.showErrorMessage(`Unable to copy commit id. See output channel for more details`);
}
}
}