diff --git a/doc/tutorials/background.md b/doc/tutorials/background.md index 0a90a9a9df..4324c900fe 100644 --- a/doc/tutorials/background.md +++ b/doc/tutorials/background.md @@ -17,7 +17,7 @@ OpenLayers is available as [`ol` npm package](https://npmjs.com/package/ol), whi ## Renderers and Browser Support -By default, OpenLayers uses a performance optimized Canvas renderer. An experimental WebGL renderer (without text rendering support) is also avaialble. +By default, OpenLayers uses a performance optimized Canvas renderer. An experimental WebGL renderer (without text rendering support) is also available. OpenLayers runs on all modern browsers that support [HTML5](https://html.spec.whatwg.org/multipage/) and [ECMAScript 5](http://www.ecma-international.org/ecma-262/5.1/). This includes Chrome, Firefox, Safari and Edge. For older browsers and platforms like Internet Explorer (down to version 9) and Android 4.x, [polyfills](http://polyfill.io), the application bundle needs to be transpiled (e.g. using [Babel](https://babeljs.io)) and bundled with polyfills for `requestAnimationFrame`, `Element.prototype.classList` and `URL`. diff --git a/src/ol/interaction/KeyboardZoom.js b/src/ol/interaction/KeyboardZoom.js index 724bfcec5b..04c4e4057d 100644 --- a/src/ol/interaction/KeyboardZoom.js +++ b/src/ol/interaction/KeyboardZoom.js @@ -27,7 +27,7 @@ import Interaction, {zoomByDelta} from '../interaction/Interaction.js'; * {@link module:ol/Map~Map}. `document` never loses focus but, for any other * element, focus will have to be on, and returned to, this element if the keys * are to function. - * See also {@link moudle:ol/interaction/KeyboardPan~KeyboardPan}. + * See also {@link module:ol/interaction/KeyboardPan~KeyboardPan}. * @api */ class KeyboardZoom extends Interaction {