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

Unified Diff: chrome/test/data/extensions/api_test/history/common.js

Issue 1150173003: Fix some JS style nits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 7 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/test/data/extensions/api_test/history/common.js
diff --git a/chrome/test/data/extensions/api_test/history/common.js b/chrome/test/data/extensions/api_test/history/common.js
index cc1961cdc1db499316dd7e5eaf9cbfbd073443f3..385a2c5003d7bf4ac80723129b664cc3493da7db 100644
--- a/chrome/test/data/extensions/api_test/history/common.js
+++ b/chrome/test/data/extensions/api_test/history/common.js
@@ -108,7 +108,7 @@ function countItemsInHistory(callback) {
/**
* Populates the history by calling addUrl for each url in the array urls.
- * @param {Array.<string>} urls The array of urls to populate the history.
+ * @param {Array<string>} urls The array of urls to populate the history.
* @param {function} callback Closure.
*/
function populateHistory(urls, callback) {
@@ -123,7 +123,7 @@ function populateHistory(urls, callback) {
/**
* Tests call this function to invoke specific tests.
- * @param {Array.<funcion>} testFns The tests to run.
+ * @param {Array<funcion>} testFns The tests to run.
*/
function runHistoryTestFns(testFns) {
chrome.test.getConfig(function(config) {
@@ -143,7 +143,7 @@ function runHistoryTestFns(testFns) {
* 'between': A time between the times teh URLs were added.
* 'after': A time after both were added.
* All times are passed to |callback| as properties of its object parameter.
- * @param {Array.<string>} urls An array of two URLs to add to the history.
+ * @param {Array<string>} urls An array of two URLs to add to the history.
* @param {function(object)} callback Called with the times described above.
*/
function addUrlsWithTimeline(urls, callback) {

Powered by Google App Engine
This is Rietveld 408576698