Fix missing quotes in import statement in readme

This commit is contained in:
Linmiao Xu
2018-12-19 14:32:15 +09:00
parent d27b43d515
commit 5ebd543b8b
+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';