Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: lib/filterStorage.js

Issue 4911914341629952: Issue 2233 - Adapted some more array type annotations for JsDoc 3 (Closed)
Patch Set: Created April 1, 2015, 9:35 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/contentPolicy.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/filterStorage.js
===================================================================
--- a/lib/filterStorage.js
+++ b/lib/filterStorage.js
@@ -103,7 +103,7 @@
/**
* List of filter subscriptions containing all filters
- * @type Array of Subscription
+ * @type Subscription[]
*/
subscriptions: [],
@@ -205,7 +205,7 @@
/**
* Replaces the list of filters in a subscription by a new list
* @param {Subscription} subscription filter subscription to be updated
- * @param {Array of Filter} filters new filter lsit
+ * @param {Filter[]} filters new filter list
*/
updateSubscriptionFilters: function(subscription, filters)
{
@@ -340,7 +340,7 @@
/**
* Resets hit count for some filters
- * @param {Array of Filter} filters filters to be reset, if null all filters will be reset
+ * @param {Filter[]} filters filters to be reset, if null all filters will be reset
*/
resetHitCounts: function(filters)
{
« no previous file with comments | « lib/contentPolicy.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld