diff --git a/docs/cubeviz/plugins.rst b/docs/cubeviz/plugins.rst
index 98d004f375..1d49650565 100644
--- a/docs/cubeviz/plugins.rst
+++ b/docs/cubeviz/plugins.rst
@@ -34,7 +34,7 @@ Plot Options
 ============
 
 This plugin gives access to per-viewer and per-layer plotting options.
-To show axes on image viewers, toggle on the "Show Axes" option at the bottom of the plugin.
+To show axes on image viewers, toggle on the "Show axes" option at the bottom of the plugin.
 
 .. seealso::
 
diff --git a/docs/dev/ui_style_guide.rst b/docs/dev/ui_style_guide.rst
index 97732c1373..8e88899a49 100644
--- a/docs/dev/ui_style_guide.rst
+++ b/docs/dev/ui_style_guide.rst
@@ -13,7 +13,7 @@ try to adhere to the following principles:
 * Any tray plugin should utilize ``<j-tray-plugin :disabled_msg='disabled_msg' :popout_button="popout_button">`` as the
   outer-container (which provides consistent styling rules).  If the plugin makes use of active status
   (live-preview marks or viewer callbacks), then also pass `` :uses_active_status="uses_active_status" @plugin-ping="plugin_ping($event)"``.
-  To enable the "keep active" check, pass `` :uses_active_status="uses_active_status" @plugin-ping="plugin_ping($event)" :keep_active.sync="keep_active" ``.
+  To enable the "Keep active" check, pass `` :uses_active_status="uses_active_status" @plugin-ping="plugin_ping($event)" :keep_active.sync="keep_active" ``.
   Any changes to style across all plugins should then take place in the
   ``j-tray-plugin`` stylesheet (``jdaviz/components/tray_plugin.vue``).
 * Each item should be wrapped in a ``v-row``, but avoid any unnecessary additional wrapping-components
diff --git a/jdaviz/components/tray_plugin.vue b/jdaviz/components/tray_plugin.vue
index f5ad6ad676..4ff6e94338 100644
--- a/jdaviz/components/tray_plugin.vue
+++ b/jdaviz/components/tray_plugin.vue
@@ -17,8 +17,8 @@
         <v-switch
           v-model="keep_active"
           @change="$emit('update:keep_active', $event)"
-          label="keep active"
-          hint="consider plugin active (showing any previews and enabling all keypress events) even when not opened"
+          label="Keep active"
+          hint="Consider plugin active (showing any previews and enabling all keypress events) even when not opened"
           persistent-hint>
         </v-switch>
       </v-row>
diff --git a/jdaviz/configs/default/plugins/plot_options/plot_options.vue b/jdaviz/configs/default/plugins/plot_options/plot_options.vue
index cb601b9623..9ea44cfa8b 100644
--- a/jdaviz/configs/default/plugins/plot_options/plot_options.vue
+++ b/jdaviz/configs/default/plugins/plot_options/plot_options.vue
@@ -162,7 +162,7 @@
     <glue-state-sync-wrapper v-if="axes_visible_sync.in_subscribed_states && viewer_selected.length > 0 && config !== 'imviz'" :sync="axes_visible_sync" :multiselect="viewer_multiselect" @unmix-state="unmix_state('axes_visible')">
       <v-switch
         v-model="axes_visible_value"
-        label="Show Axes"
+        label="Show axes"
         />
     </glue-state-sync-wrapper>