Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5e09d40

Browse files
author
Chase Coalwell
committedDec 21, 2018
adjust tags for compatibility
1 parent 7d1f1a6 commit 5e09d40

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.yardopts

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
--define-class-expr (AWS\.util\.)?inherit
1818
--update-class-expr (AWS\.util\.)?update
1919
--mixin-module-expr (AWS\.util\.)?mixin
20-
--tag abstract_class:"Abstract Class"
21-
--tag abstract_method:"Abstract Method"
20+
--tag class_abstract:"Abstract Class"
21+
--tag method_abstract:"Abstract Method"
2222
lib/core.js
2323
lib/**/*.js
2424
-

‎lib/service.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var clientCount = 0;
88
/**
99
* The service class representing an AWS service.
1010
*
11-
* @abstract_class This class is an abstract class.
11+
* @class_abstract This class is an abstract class.
1212
*
1313
* @!attribute apiVersions
1414
* @return [Array<String>] the list of API versions supported by this service.
@@ -428,7 +428,7 @@ AWS.Service = inherit({
428428
* Override this method to setup any custom request listeners for each
429429
* new request to the service.
430430
*
431-
* @abstract_method This is an abstract method.
431+
* @method_abstract This is an abstract method.
432432
*/
433433
setupRequestListeners: function setupRequestListeners(request) {
434434
},

0 commit comments

Comments
 (0)
Please sign in to comment.