tracks/elm/exercises/pangram/README.md in trackler-2.2.1.110 vs tracks/elm/exercises/pangram/README.md in trackler-2.2.1.111
- old
+ new
@@ -4,11 +4,11 @@
"every letter") is a sentence using every letter of the alphabet at least once.
The best known English pangram is:
> The quick brown fox jumps over the lazy dog.
The alphabet used consists of ASCII letters `a` to `z`, inclusive, and is case
-insensitive. Input will not contain non-ASCII symbols.
+insensitive. Some input will contain non-ASCII symbols.
## Elm Installation
Refer to the [Exercism help page](http://exercism.io/languages/elm) for Elm
installation and learning resources.
@@ -17,22 +17,22 @@
The first time you start an exercise, you'll need to ensure you have the
appropriate dependencies installed.
```bash
-$ npm install
+$ elm-package install --yes
```
Execute the tests with:
```bash
-$ npm test
+$ elm-test
```
Automatically run tests again when you save changes:
```bash
-$ npm run watch
+$ elm-test --watch
```
As you work your way through the test suite, be sure to remove the `skip <|`
calls from each test until you get them all passing!