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

Unified Diff: chrome/common/extensions/docs/examples/extensions/proxy_configuration/proxy_form_controller.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/common/extensions/docs/examples/extensions/proxy_configuration/proxy_form_controller.js
diff --git a/chrome/common/extensions/docs/examples/extensions/proxy_configuration/proxy_form_controller.js b/chrome/common/extensions/docs/examples/extensions/proxy_configuration/proxy_form_controller.js
index 26c70dc4e0e2aafe5e5048c60133721d6ac96fb8..0157bbea516af06296ed316b2e0816c67248aeea 100644
--- a/chrome/common/extensions/docs/examples/extensions/proxy_configuration/proxy_form_controller.js
+++ b/chrome/common/extensions/docs/examples/extensions/proxy_configuration/proxy_form_controller.js
@@ -167,7 +167,7 @@ ProxyFormController.prototype = {
/**
- * @return {Array.<string>} A list of hostnames that should bypass the proxy.
+ * @return {Array<string>} A list of hostnames that should bypass the proxy.
*/
get bypassList() {
return document.getElementById('bypassList').value.split(/\s*(?:,|^)\s*/m);
@@ -175,7 +175,7 @@ ProxyFormController.prototype = {
/**
- * @param {?Array.<string>} data A list of hostnames that should bypass
+ * @param {?Array<string>} data A list of hostnames that should bypass
* the proxy. If empty, the bypass list is emptied.
*/
set bypassList(data) {

Powered by Google App Engine
This is Rietveld 408576698