From b6778878bad44d6e8a3faf3f295e737dbf8d151f Mon Sep 17 00:00:00 2001 From: Rob Lauer Date: Tue, 12 Dec 2017 10:29:16 -0600 Subject: [PATCH] minor grammatical update --- lib/services/subscription-service.ts | 2 +- test/services/subscription-service.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/services/subscription-service.ts b/lib/services/subscription-service.ts index 73778df593..e1302d865a 100644 --- a/lib/services/subscription-service.ts +++ b/lib/services/subscription-service.ts @@ -11,7 +11,7 @@ export class SubscriptionService implements ISubscriptionService { public async subscribeForNewsletter(): Promise { if (await this.shouldAskForEmail()) { - this.$logger.out("Leave your e-mail address here to subscribe for NativeScript newsletter and product updates, tips and tricks:"); + this.$logger.out("Enter your e-mail address to subscribe to the NativeScript Newsletter and hear about product updates, tips & tricks, and community happenings:"); const email = await this.getEmail("(press Enter for blank)"); await this.$userSettingsService.saveSetting("EMAIL_REGISTERED", true); await this.sendEmail(email); diff --git a/test/services/subscription-service.ts b/test/services/subscription-service.ts index c9fc7548e6..6223e531a9 100644 --- a/test/services/subscription-service.ts +++ b/test/services/subscription-service.ts @@ -155,7 +155,7 @@ describe("subscriptionService", () => { await subscriptionService.subscribeForNewsletter(); - assert.equal(loggerOutput, "Leave your e-mail address here to subscribe for NativeScript newsletter and product updates, tips and tricks:"); + assert.equal(loggerOutput, "Enter your e-mail address to subscribe to the NativeScript Newsletter and hear about product updates, tips & tricks, and community happenings:"); }); const expectedMessageInPrompter = "(press Enter for blank)";