Skip to content

Commit 9a95e7c

Browse files
Rob Lauerdtopuzov
Rob Lauer
authored andcommitted
minor grammatical update (#3267)
1 parent 199757e commit 9a95e7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/services/subscription-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export class SubscriptionService implements ISubscriptionService {
1111

1212
public async subscribeForNewsletter(): Promise<void> {
1313
if (await this.shouldAskForEmail()) {
14-
this.$logger.out("Leave your e-mail address here to subscribe for NativeScript newsletter and product updates, tips and tricks:");
14+
this.$logger.out("Enter your e-mail address to subscribe to the NativeScript Newsletter and hear about product updates, tips & tricks, and community happenings:");
1515
const email = await this.getEmail("(press Enter for blank)");
1616
await this.$userSettingsService.saveSetting("EMAIL_REGISTERED", true);
1717
await this.sendEmail(email);

test/services/subscription-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ describe("subscriptionService", () => {
155155

156156
await subscriptionService.subscribeForNewsletter();
157157

158-
assert.equal(loggerOutput, "Leave your e-mail address here to subscribe for NativeScript newsletter and product updates, tips and tricks:");
158+
assert.equal(loggerOutput, "Enter your e-mail address to subscribe to the NativeScript Newsletter and hear about product updates, tips & tricks, and community happenings:");
159159
});
160160

161161
const expectedMessageInPrompter = "(press Enter for blank)";

0 commit comments

Comments
 (0)