@@ -100,7 +100,7 @@ class Amadeus {
100100 * ```
101101 *
102102 * @param response the previous response for an API call
103- * @return {Promise.<Response,ResponseError> } a Bluebird Promise
103+ * @return {Promise.<Response,ResponseError> } a Promise
104104 */
105105 previous ( response ) { return this . pagination . page ( 'previous' , response ) ; }
106106
@@ -121,7 +121,7 @@ class Amadeus {
121121 * ```
122122 *
123123 * @param response the previous response for an API call
124- * @return {Promise.<Response,ResponseError> } a Bluebird Promise
124+ * @return {Promise.<Response,ResponseError> } a Promise
125125 */
126126 next ( response ) { return this . pagination . page ( 'next' , response ) ; }
127127
@@ -143,7 +143,7 @@ class Amadeus {
143143 * ```
144144 *
145145 * @param response the previous response for an API call
146- * @return {Promise.<Response,ResponseError> } a Bluebird Promise
146+ * @return {Promise.<Response,ResponseError> } a Promise
147147 */
148148 first ( response ) { return this . pagination . page ( 'first' , response ) ; }
149149
@@ -164,7 +164,7 @@ class Amadeus {
164164 * ```
165165 *
166166 * @param response the previous response for an API call
167- * @return {Promise.<Response,ResponseError> } a Bluebird Promise
167+ * @return {Promise.<Response,ResponseError> } a Promise
168168 */
169169 last ( response ) { return this . pagination . page ( 'last' , response ) ; }
170170}
0 commit comments