diff --git a/Samples/office-keyboard-shortcuts/src/taskpane.html b/Samples/office-keyboard-shortcuts/src/taskpane.html
index 9fdaffae7..e96c11538 100644
--- a/Samples/office-keyboard-shortcuts/src/taskpane.html
+++ b/Samples/office-keyboard-shortcuts/src/taskpane.html
@@ -39,14 +39,14 @@
Please sideload your add-in to see app body.
Try the following keyboard shortcuts.
-
- Ctrl+Alt+Up arrow key: Open the add-in's task pane.
+ Ctrl+Alt+Up arrow key: Open the add-in's task pane.
-
- Ctrl+Alt+Down arrow key: Hide the add-in's task pane.
+ Ctrl+Alt+Down arrow key: Hide the add-in's task pane.
-
- Ctrl+Alt+Q: Run an action that's specific to the current Office host.
+ Ctrl+Alt+Q: Run an action that's specific to the current Office host.
In Excel, this shortcut cycles through colors in the currently selected cell.
In Word, this shortcut adds text to the document.
@@ -57,7 +57,7 @@
Please sideload your add-in to see app body.
If a custom shortcut conflicts with an existing shortcut that's defined in the host application or in another add-in, a dialog will be shown.
This dialog will ask you to confirm which action you want to be mapped to the keyboard shortcut.
- To test this now, press Ctrl+R.
+ To test this now, press Ctrl+R.
After you select an action, you can change your preference by invoking Reset Office Add-in Shortcut Preferences from the search field.
diff --git a/Samples/outlook-check-item-categories/src/taskpane/taskpane.js b/Samples/outlook-check-item-categories/src/taskpane/taskpane.js
index 13c2a4c43..109fe1c83 100644
--- a/Samples/outlook-check-item-categories/src/taskpane/taskpane.js
+++ b/Samples/outlook-check-item-categories/src/taskpane/taskpane.js
@@ -34,7 +34,7 @@ function getCategories() {
selection.multiple = true;
let label = document.createElement("label");
label.innerHTML =
- "
Select the applicable categories.
Select and hold Ctrl to choose multiple categories.
";
+ "
Select the applicable categories.
Select and hold Ctrl to choose multiple categories.
";
label.htmlFor = "applicable-categories";
asyncResult.value.forEach((category, index) => {