Index: lib/subscriptionClasses.js |
diff --git a/lib/subscriptionClasses.js b/lib/subscriptionClasses.js |
index 7a2fff3772c461b9ff46dbf9691458ec9886a599..6b0ff6354329f729ff15bad2a18a87ce8b796f0e 100644 |
--- a/lib/subscriptionClasses.js |
+++ b/lib/subscriptionClasses.js |
@@ -122,7 +122,7 @@ Subscription.prototype = |
}, |
/** |
- * Serializes the filter to an array of strings for writing out on the disk. |
+ * 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 |
*/ |
serialize: function(buffer) |
@@ -176,7 +176,7 @@ Subscription.fromURL = function(url) |
{ |
return new SpecialSubscription(url); |
} |
-} |
+}; |
/** |
* Deserializes a subscription |
@@ -250,7 +250,7 @@ Subscription.fromObject = function(obj) |
result._disabled = (obj.disabled == "true"); |
return result; |
-} |
+}; |
/** |
* Class for special filter subscriptions (user's filters) |
@@ -329,7 +329,7 @@ SpecialSubscription.create = function(title) |
{ |
url = "~user~" + Math.round(Math.random()*1000000); |
} while (url in Subscription.knownSubscriptions); |
- return new SpecialSubscription(url, title) |
+ return new SpecialSubscription(url, title); |
}; |
/** |
@@ -425,7 +425,7 @@ RegularSubscription.prototype = |
}; |
/** |
- * Class for filter subscriptions updated by externally (by other extension) |
+ * Class for filter subscriptions updated externally (by other extension) |
* @param {String} url see Subscription() |
* @param {String} [title] see Subscription() |
* @constructor |
@@ -451,7 +451,7 @@ ExternalSubscription.prototype = |
}; |
/** |
- * Class for filter subscriptions updated by externally (by other extension) |
+ * Class for filter subscriptions updated externally (by other extension) |
* @param {String} url see Subscription() |
* @param {String} [title] see Subscription() |
* @constructor |
@@ -562,7 +562,7 @@ DownloadableSubscription.prototype = |
* @type Boolean |
*/ |
upgradeRequired: false, |
- |
+ |
/** |
* Number indicating how often the object was downloaded. |
* @type Number |