Use @api annotation instead of @todo api

This commit is contained in:
Tim Schaub
2014-07-05 15:41:14 -04:00
parent 297503e7c9
commit 4cf5ab4620
155 changed files with 759 additions and 757 deletions

View File

@@ -7,7 +7,7 @@ goog.require('goog.fx.easing');
* @function
* @param {number} t Input between 0 and 1.
* @return {number} Output between 0 and 1.
* @todo api
* @api
*/
ol.easing.easeIn = goog.fx.easing.easeIn;
@@ -16,7 +16,7 @@ ol.easing.easeIn = goog.fx.easing.easeIn;
* @function
* @param {number} t Input between 0 and 1.
* @return {number} Output between 0 and 1.
* @todo api
* @api
*/
ol.easing.easeOut = goog.fx.easing.easeOut;
@@ -25,7 +25,7 @@ ol.easing.easeOut = goog.fx.easing.easeOut;
* @function
* @param {number} t Input between 0 and 1.
* @return {number} Output between 0 and 1.
* @todo api
* @api
*/
ol.easing.inAndOut = goog.fx.easing.inAndOut;
@@ -33,7 +33,7 @@ ol.easing.inAndOut = goog.fx.easing.inAndOut;
/**
* @param {number} t Input between 0 and 1.
* @return {number} Output between 0 and 1.
* @todo api
* @api
*/
ol.easing.linear = function(t) {
return t;
@@ -43,7 +43,7 @@ ol.easing.linear = function(t) {
/**
* @param {number} t Input between 0 and 1.
* @return {number} Output between 0 and 1.
* @todo api
* @api
*/
ol.easing.upAndDown = function(t) {
if (t < 0.5) {