aboutsummaryrefslogtreecommitdiff
path: root/src/git.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/git.ts')
-rw-r--r--src/git.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/git.ts b/src/git.ts
index 6c82e48d..94144043 100644
--- a/src/git.ts
+++ b/src/git.ts
@@ -42,7 +42,7 @@ export class Git {
branch(): string {
const noun = this.faker.hacker.noun().replace(' ', '-');
const verb = this.faker.hacker.verb().replace(' ', '-');
- return noun + '-' + verb;
+ return `${noun}-${verb}`;
}
/**