diff --git a/5.1-Updater-[Options].md b/5.1-Updater-[Options].md
index e7b6aa2..2b01638 100644
--- a/5.1-Updater-[Options].md
+++ b/5.1-Updater-[Options].md
@@ -81,8 +81,8 @@ The following example illustrates how `-merge` works:
/* 0103: set your "home" page (see 0102) ***/
// user_pref("browser.startup.homepage", "https://www.example.com/");
-/* 0510: disable Pocket (FF39+) ***/
-user_pref("extensions.pocket.enabled", false);
+/* 0801: disable location bar using search ***/
+user_pref("keyword.enabled", false);
/* 1202: control TLS versions with min and max ***/
user_pref("security.tls.version.max", 4); // 4 = allow up to and including TLS 1.3
@@ -95,7 +95,7 @@ user_pref("dom.netinfo.enabled", false);
```js
/*** my user.js overrides ***/
user_pref("browser.startup.homepage", "https://www.foo.bar/"); // 01xx
-user_pref("extensions.pocket.enabled", true); // 0510 - I like Pocket
+user_pref("keyword.enabled", true); // 0801 - I use a privacy respecting engine
user_pref("dom.netinfo.enabled", false); // 25xx - enforcing false
//// --- comment-out --- 'security.tls.version.max' -1202- wait until FF enables TLS1.3 for everyone
@@ -106,8 +106,8 @@ user_pref("dom.netinfo.enabled", false); // 25xx - enforcing false
/* 0103: set your "home" page (see 0102) ***/
// user_pref("browser.startup.homepage", "https://www.example.com/");
-/* 0510: disable Pocket (FF39+) ***/
-user_pref("extensions.pocket.enabled", true); // 0510 - I like Pocket
+/* 0801: disable location bar using search ***/
+user_pref("keyword.enabled", true); // 0801 - I use a privacy respecting engine
/* 1202: control TLS versions with min and max ***/
//user_pref("security.tls.version.max", 4); // 4 = allow up to and including TLS 1.3
@@ -126,7 +126,7 @@ user_pref("browser.startup.homepage", "https://www.foo.bar/"); // 01xx
🔹 a couple things to note here:
* 0103 was not merged because it's inactive in the user.js. Instead the override was appended at the bottom.
-* 0510 was merged with the override, including the comment from the overrides file.
+* 0801 was merged with the override, including the comment from the overrides file.
* 1202 was commented out and the original value and comment are kept intact
* the netinfo line was merged but the pref has been moved to 4600 in the updated user.js (see info below)
* the special comment-out command was also appended at the bottom as a reminder that you gave that command