Fix a function comment

This commit is contained in:
joeduffy 2017-11-08 16:20:27 -08:00
parent d01465cf6d
commit 4d26cf4f2c
2 changed files with 1 additions and 3 deletions

View file

@ -157,4 +157,3 @@ export function main(args: string[]): void {
}
main(process.argv.slice(2));

View file

@ -5,7 +5,7 @@
import * as runtime from "./runtime";
/**
* getStack returns the current project name, or the empty string if there is none.
* getProject returns the current project name, or the empty string if there is none.
*/
export function getProject(): string {
return runtime.options.project || "";
@ -16,4 +16,3 @@ export function getProject(): string {
export function getStack(): string {
return runtime.options.stack || "";
}