Merge pull request #1848 from linrock/fix-addons-typo

Fix missing quotes in import statement in readme
This commit is contained in:
Daniel Imms
2018-12-19 11:09:25 -08:00
committed by GitHub
+1 -1
View File
@@ -73,7 +73,7 @@ Addons are JavaScript modules that extend the `Terminal` prototype with new meth
To use an addon, just import the JavaScript module and pass it to `Terminal`'s `applyAddon` method:
```javascript
import { Terminal } from xterm;
import { Terminal } from 'xterm';
import * as fit from 'xterm/lib/addons/fit/fit';