 Issue 5964611362750464:
  Issue 2233 - Adapted array type annotations for JsDoc 3  (Closed)
    
  
    Issue 5964611362750464:
  Issue 2233 - Adapted array type annotations for JsDoc 3  (Closed) 
  | Index: lib/subscriptionClasses.js | 
| =================================================================== | 
| --- a/lib/subscriptionClasses.js | 
| +++ b/lib/subscriptionClasses.js | 
| @@ -56,7 +56,7 @@ | 
| /** | 
| * Filters contained in the filter subscription | 
| - * @type Array of Filter | 
| + * @type Filter[] | 
| */ | 
| filters: null, | 
| @@ -123,7 +123,7 @@ | 
| /** | 
| * Serializes the subscription to an array of strings for writing out on the disk. | 
| - * @param {Array of String} buffer buffer to push the serialization results into | 
| + * @param {string[]} buffer to push the serialization results into | 
| 
Wladimir Palant
2015/03/30 18:58:05
Having "buffer" twice here wasn't a mistake - the
 
Sebastian Noack
2015/03/30 22:51:55
Oh, yeah. You're right.
 | 
| */ | 
| serialize: function(buffer) | 
| { | 
| @@ -272,7 +272,7 @@ | 
| /** | 
| * Filter types that should be added to this subscription by default | 
| * (entries should correspond to keys in SpecialSubscription.defaultsMap). | 
| - * @type Array of String | 
| + * @type string[] | 
| */ | 
| defaults: null, |