diff --git a/docs/advanced-usage/front-end/frontend.md b/docs/advanced-usage/front-end/frontend.md
index a57fc85f8..0ce678892 100644
--- a/docs/advanced-usage/front-end/frontend.md
+++ b/docs/advanced-usage/front-end/frontend.md
@@ -12,90 +12,92 @@
[TOC]
## Overview
-For users with the appropriate level of access, ExpressionEngine Pro adds "front edit" links (
) on the site's front-end that allow editing the contents of each entry field individually. This is done directly on front-end without going to the Control Panel.
+For any user logged in with a sufficient level of access permissions, ExpressionEngine Pro adds "front edit" links (
) that allow editing an entry's data field by field. When enabled, editing can be done directly on front-end without needing to go to the Control Panel.
-Clicking the link opens a popup with the field that can be modified and saved. Along with editing, users can also use front edit popup to access the full entry for editing with live preview showing the current page you are on.
+Clicking the link icon opens a popup for that specific field so that its content can be modified and saved. The user can also switch to editing with the full entry interface (with live preview functionality if it has been set up for that channel).

-The links are being placed in your HTML right before the field's tag (or opening tag if field tag pair is used).
+By default, edit links are added into the HTML right before where the field tag is called (the opening tag if a field tag pair is used).
-WARN:**Permissions:** Users must be logged-in on the front-end of your site and must have a role assigned to them which allows them to access and edit content for that entry's channel.
+WARN:**Permissions:** Users must be: a) logged-in on the front-end of the site and b) must have a role assigned to them which allows them to access and edit content for that entry's channel.
.
## Saving Content
-After editing data, content can be saved by one of two ways:
-- Clicking on "Save", which will trigger a page reload
+
+After editing data, content can be saved in one of two ways:
+- Clicking directly on "Save", which will trigger a page reload

-- Clicking the alternate "Save without Reload", which will save the content without reloading the page. This would require a manual page refresh to see any updated content.
+- Clicking the alternate "Save without Reload" choice, which will save the content but will not reload the page. This choice requires a manual page refresh to see any updated content but is quicker, especially if you are planning to edit multiple fields or entries on a page.

## Unsaved Changes
-When a user edits data and has unsaved changes, Pro will create an autosave of the entry and alert the user via a notification on the edit window with unsaved changes. The autosave is triggered based on the default autosave interval of 60 seconds. If you want to ensure users do not accidentally lose unsaved changes adjust the `[autosave_interval_seconds]` system config override to a lower interval between autosaves. A setting of 10 seconds is the recommendation.
+
+When a user has edited data and has unsaved changes, Pro will create an autosave of the entry and display an alert notification on the edit window with the unsaved changes. The autosave is triggered based on the autosave interval setting. If you want to ensure users do not accidentally lose unsaved changes, adjust the `[autosave_interval_seconds]` [system config override](general/system-configuration-overrides.md#autosave_interval_seconds) to a shorter interval between autosaves. A setting of 10 seconds is recommended.

-NOTE: **Note:** If the `[autosave_interval_seconds]` system config value was not previously changed, Pro will set this value at 10 seconds upon install.
+NOTE: **Note:** If the `[autosave_interval_seconds]` system config value was not previously set, upon install, Pro will set this value in the config file to be 10 seconds. However, if for some reason this value is not set explicitly, the default value is 60 seconds.
+
+NOTE: **Note:** Autosave data is kept for a default of 6 hours. This can be adjusted via the [`[autosave_prune_hours]` system config value](general/system-configuration-overrides.md#autosave_prune_hours).
Example Usage:
```
-$config['autosave_interval_seconds'] = '10';
+$config['autosave_interval_seconds'] = '10';
+$config['autosave_prune_hours'] = '6';
```
-## Conditional Tags
-
-### `{if frontedit}`
-
-```{if frontedit} content {/if}```
-This special conditional allows you to display content if front-end editing is enabled.
+## Enable/Disable the Front Edit Links
+There are multiple ways to enable or disable front-end editing links:
-## Enable/Disable The Front Edit Link
+ - Globally with [configuration overrides](/general/system-configuration-overrides.md#enable_frontedit_links)
+ - In the [Front-End Editing Settings](/control-panel/settings/front-end-editing.md#enable-automatic-front-end-editing-links) where you control the Dock overall.
+ - Per field in the [field settings](control-panel/field-manager/edit-field.md)
+ - By the user on the front-end [via the Dock](advanced-usage/front-end/dock.md#edit-toggle), by toggling Edit Mode on/off.
+ - In the [Template Settings](control-panel/template-manager.md#settings) of an [individual template](/troubleshooting/front-end-content-management.html#dock-shows-everywhere-while-front-edit-links-only-show-some-places)
+ - In the template by using [ExpressionEngine template comments](#expressionengine-comment), [HTML comments](#html-comment), or the [`disable` field parameter](#field-tag-parameter)
+ - By granting or removing editing access to a user role
-There are several ways to disable front-end editing links:
- - Globally with [configuration overrides](/general/system-configuration-overrides.md#enable_frontedit_links) or in [General Settings](/control-panel/settings/front-end-editing.md#enable-automatic-front-end-editing-links)
- - Per field in the [field settings](control-panel/field-manager/field-manager-settings.md)
- - Via the Dock on the front-end by toggling Edit Mode on/off.
- - In the template by using [ExpressionEngine template comments](#expressionengine-comment), [HTML comments](#html-comment), or [field parameter](#field-tag-parameter)
+### Enable/Disable the Front Edit Link in the Template
-### Enable/Disable Front Edit Link in the template
+#### Using ExpressionEngine Comments
-#### ExpressionEngine Comment
-
-Anything content wrapped in `{!-- disable frontedit --} ... {!-- //disable frontedit --}` HTML comment will not have edit links in it.
+Any content wrapped in these EE comments will not have edit links in it.