Skip to content

Commit 056d88e

Browse files
authored
fix: typos in adjectives (tomalaforge#1010)
Also, add a bit more explanation
1 parent 3a118d3 commit 056d88e

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

apps/signal/54-pipe-observable-to-signal/src/app/currency.service.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ export interface Currency {
1010
export const currency: Currency[] = [
1111
{ name: 'Euro', code: 'EUR', symbol: '€' },
1212
{ name: 'Dollar US', code: 'USD', symbol: 'US$' },
13-
{ name: 'Dollar Autralien', code: 'AUD', symbol: 'AU$' },
14-
{ name: 'Livre Sterling', code: 'GBP', symbol: '£' },
15-
{ name: 'Dollar Canadien', code: 'CAD', symbol: 'CAD' },
13+
{ name: 'Dollar Australian', code: 'AUD', symbol: 'AU$' },
14+
{ name: 'Pound Sterling', code: 'GBP', symbol: '£' },
15+
{ name: 'Dollar Canadian', code: 'CAD', symbol: 'CAD' },
1616
];
1717

1818
@Injectable()

docs/src/content/docs/challenges/signal/54-pipe-observable-to-signal.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ description: Challenge 54 is about refactoring an application using observable t
44
author: thomas-laforge
55
contributors:
66
- tomalaforge
7+
- LMFinney
78
challengeNumber: 54
89
command: signal-pipe-observable-to-signal
910
sidebar:
@@ -17,6 +18,6 @@ We have a legacy application that is using observables to store a state. Signals
1718

1819
## Statement
1920

20-
So the goal of this challenge is to refactor the following application to be a fully signal based application.
21+
So, the goal of this challenge is to refactor the following application to be a fully signal-based application. When you are done, neither the pipe nor the service should import RxJS.
2122

22-
Be careful along the way, everything might not work as you wish.
23+
Be careful along the way; everything might not work as you wish.

0 commit comments

Comments
 (0)