From 727d7827485b991d8c9fc043ba63871e1a6332cd Mon Sep 17 00:00:00 2001
From: Lars Hvam <larshp@hotmail.com>
Date: Tue, 10 Sep 2019 08:26:48 +0200
Subject: [PATCH] readme: align add new language example

---
 README.md | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index f3000902..f521f8e6 100644
--- a/README.md
+++ b/README.md
@@ -75,14 +75,17 @@ This npm module is bundled and distributed in the [monaco-editor](https://www.np
 * create `$/src/myLang/myLang.ts`
 * create `$/src/myLang/myLang.test.ts`
 * restart compilation with `$> npm run watch`
-* edit `$/src/monaco.contribution.ts` and register your new language:
+* edit `$/src/monaco.contribution.ts` and register your new language
+```js
+  import './myLang/myLang.contribution';
+```
 * edit `$/test/setup.js` and load your new language while testing
 ```js
-  'release/dev/sql/sql.test',
+  'release/dev/myLang/myLang.test',
 ```
 * edit `$/scripts/bundle.js` and ship your new language
 ```js
-  bundleOne('sql/sql'),
+  bundleOne('myLang/myLang');
 ```
 
 ## Code of Conduct