Skip to content

Commit

Permalink
[INTERNAL] Apply UA review
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomByte committed Jan 13, 2022
1 parent db72383 commit 4fca2aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/AbstractReader.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class AbstractReader {
* @public
* @param {module:@ui5/fs.readers.Filter~callback} callback
* Filter function. Will be called for every resource passed through this reader.
* @returns {module:@ui5/fs.reader.Transformer} T
* @returns {module:@ui5/fs.reader.Filter} Filter instance
*/
filter(callback) {
const Filter = require("./readers/Filter");
Expand All @@ -93,7 +93,7 @@ class AbstractReader {
* @public
* @param {module:@ui5/fs.readers.Transformer~callback} callback
* Callback to check and eventually transform any resource passed through the reader
* @returns {module:@ui5/fs.reader.Transformer} T
* @returns {module:@ui5/fs.reader.Transformer} Transformer instance
*/
transformer(callback) {
const Transformer = require("./readers/Transformer");
Expand Down
2 changes: 1 addition & 1 deletion lib/readers/Filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Filter extends AbstractReader {
* @public
* @callback module:@ui5/fs.readers.Filter~callback
* @param {module:@ui5/fs.Resource} resource Resource to test
* @returns {boolean} Return <code>true</code> to keep the resource, or <code>false</code> to disregard it
* @returns {boolean} Whether to keep the resource
*/

/**
Expand Down

0 comments on commit 4fca2aa

Please sign in to comment.