diff --git a/user.js-Syntax.md b/user.js-Syntax.md index 946f128..05ac987 100644 --- a/user.js-Syntax.md +++ b/user.js-Syntax.md @@ -8,8 +8,6 @@ Every line that sets a preference follows this format: `user_pref("preference.name.here", value);` -Let's unpack that: - * `user_pref`: A command that tells Firefox, "Hey, I want to set a user preference." You'll see this at the start of almost every active line. * `("preference.name.here", value)`: This part is enclosed in parentheses. * `"preference.name.here"`: The **name** of the Firefox setting you want to change. It's always a string of text, wrapped in double quotes. These names can look a bit like website addresses, with dots separating different parts. For example, `browser.startup.homepage` tells Firefox what page to load when it starts.