Use single quote instead of backtick

This commit is contained in:
Tim Schaub
2018-07-19 10:22:10 -06:00
parent cf58ee9bf1
commit 83972b00a5
+4 -4
View File
@@ -37,13 +37,13 @@ Class hierarchies grouped by their parent are provided in a subfolder of the pac
For convenience, these are also available as named exports, e.g. For convenience, these are also available as named exports, e.g.
```js ```js
import {Map, View} from `ol`; import {Map, View} from 'ol';
import {Tile, Vector} from `ol/layer`; import {Tile, Vector} from 'ol/layer';
``` ```
In addition to these re-exported classes, modules with lowercase names also provide constants or functions as named exports: In addition to these re-exported classes, modules with lowercase names also provide constants or functions as named exports:
```js ```js
import {inherits} from `ol`; import {inherits} from 'ol';
import {fromLonLat} from `ol/proj`; import {fromLonLat} from 'ol/proj';
``` ```