Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(242)

Unified Diff: chrome/browser/resources/file_manager/js/metadata/function_parallel.js

Issue 12262003: [Cleanup] Files.app: Adds missing periods at the end of the descriptions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/file_manager/js/metadata/function_parallel.js
diff --git a/chrome/browser/resources/file_manager/js/metadata/function_parallel.js b/chrome/browser/resources/file_manager/js/metadata/function_parallel.js
index a2925ac93019cf087aa3d5d8212c83e0ed47bc01..de7fa30525b705723bdd4ae34ba79c6a662de867 100644
--- a/chrome/browser/resources/file_manager/js/metadata/function_parallel.js
+++ b/chrome/browser/resources/file_manager/js/metadata/function_parallel.js
@@ -6,9 +6,9 @@
* @constructor
* @class FunctionSequence to invoke steps in sequence
*
- * @param steps array of functions to invoke in parallel
- * @param callback callback to invoke on success
- * @param failureCallback callback to invoke on failure
+ * @param steps array of functions to invoke in parallel.
+ * @param callback callback to invoke on success.
+ * @param failureCallback callback to invoke on failure.
*/
function FunctionParallel(name, steps, logger, callback, failureCallback) {
// Private variables hidden in closure
@@ -31,7 +31,7 @@ function FunctionParallel(name, steps, logger, callback, failureCallback) {
/**
* Error handling function, which fires error callback.
*
- * @param err error message
+ * @param err error message.
*/
FunctionParallel.prototype.onError_ = function(err) {
if (!this.failed_) {

Powered by Google App Engine
This is Rietveld 408576698