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

Unified Diff: lib/subscriptionClasses.js

Issue 6302563414573056: Noissue - Added missing semicolons and other trivial fixes. (Closed)
Patch Set: Created March 6, 2015, 9:42 p.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/filterClasses.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « lib/filterClasses.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld