From 3530071d1ea2c3e2119788ec255ac44613fd1d66 Mon Sep 17 00:00:00 2001 From: Thorin-Oakenpants Date: Mon, 31 Jan 2022 02:19:34 +0000 Subject: [PATCH] Updated 2.1 User.js (markdown) --- 2.1-User.js.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/2.1-User.js.md b/2.1-User.js.md index 2fe4923..cbf16b2 100644 --- a/2.1-User.js.md +++ b/2.1-User.js.md @@ -35,10 +35,10 @@ user_pref("browser.Startup.page", 0); // this will be applied but NOT do anythin // two forward slashes indicate a comment // and do not need to be closed at the end // and only apply to the one line from when they are added -user_pref("preference.name", "value"); // comment starts at // +user_pref("pref.name.example", "value"); // comment starts at // -user_pref("preference.name", "not commented out"); // this is an ACTIVE pref and will be applied -// user_pref("preference.name", "commented out"); // this is an INACTIVE pref and will NOT be applied +user_pref("pref.name.example", "not commented out"); // this is an ACTIVE pref and will be applied +// user_pref("pref.name.example", "commented out"); // this is an INACTIVE pref and will NOT be applied ``` ---