From a5bcbd9fbf7b62fdd8310bd265cc4af8a32ea5ee Mon Sep 17 00:00:00 2001
From: Anil Seervi <61609033+AnilSeervi@users.noreply.github.com>
Date: Thu, 13 Jan 2022 21:25:47 +0530
Subject: [PATCH] Use Ctrl for Windows/Linux instead of Control
---
.../basic-writing-and-formatting-syntax.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md b/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md
index 99e8223128..b205c53e52 100644
--- a/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md
+++ b/content/github/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax.md
@@ -29,8 +29,8 @@ You can indicate emphasis with bold, italic, or strikethrough text in comment fi
| Style | Syntax | Keyboard shortcut | Example | Output |
| --- | --- | --- | --- | --- |
-| Bold | `** **` or `__ __`| Command+B (Mac) or Control+B (Windows/Linux) | `**This is bold text**` | **This is bold text** |
-| Italic | `* *` or `_ _` | Command+I (Mac) or Control+I (Windows/Linux) | `*This text is italicized*` | *This text is italicized* |
+| Bold | `** **` or `__ __`| Command+B (Mac) or Ctrl+B (Windows/Linux) | `**This is bold text**` | **This is bold text** |
+| Italic | `* *` or `_ _` | Command+I (Mac) or Ctrl+I (Windows/Linux) | `*This text is italicized*` | *This text is italicized* |
| Strikethrough | `~~ ~~` | | `~~This was mistaken text~~` | ~~This was mistaken text~~ |
| Bold and nested italic | `** **` and `_ _` | | `**This text is _extremely_ important**` | **This text is _extremely_ important** |
| All bold and italic | `*** ***` | | `***All this text is important***` | ***All this text is important*** |