From 4b19f12c29f3dee86866f17754fb5a9f6465d657 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Sun, 6 Nov 2016 09:17:14 -0700 Subject: [PATCH] Link to view.animate() --- doc/tutorials/introduction.md | 2 +- src/ol/easing.jsdoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorials/introduction.md b/doc/tutorials/introduction.md index 05c7a4d474..6858efb4cd 100644 --- a/doc/tutorials/introduction.md +++ b/doc/tutorials/introduction.md @@ -34,7 +34,7 @@ The library is intended for use on both desktop/laptop and mobile devices. OL3 uses a similar object hierarchy to the Closure library. There is a top-level `ol` namespace (basically, `var ol = {};`). Subdivisions of this are: * further namespaces, such as `ol.layer`; these have a lower-case initial -* simple objects containing static properties and methods, such as `ol.animation`; these also have a lower-case initial +* simple objects containing static properties and methods, such as `ol.easing`; these also have a lower-case initial * types, which have an upper-case initial. These are mainly 'classes', which here means a constructor function with prototypal inheritance, such as `ol.Map` or `ol.layer.Vector` (the Vector class within the layer namespace). There are however other, simpler, types, such as `ol.Extent`, which is an array. Class namespaces, such as `ol.layer` have a base class type with the same name, such as `ol.layer.Layer`. These are mainly abstract classes, from which the other subclasses inherit. diff --git a/src/ol/easing.jsdoc b/src/ol/easing.jsdoc index 2d63bec167..1a3dad223e 100644 --- a/src/ol/easing.jsdoc +++ b/src/ol/easing.jsdoc @@ -1,4 +1,4 @@ /** - * Easing functions for {@link ol.animation}. + * Easing functions for {@link ol.View#animate}. * @namespace ol.easing */