Skip to content

Commit f0bca2f

Browse files
authored
Fix spacing (#4460)
"&emsp" currently show in doc, instead of tabs.
1 parent dbc338e commit f0bca2f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/cpp/left-shift-and-right-shift-operators-input-and-output.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ The bitwise shift operators are the right-shift operator (**`>>`**), which moves
1313
## Syntax
1414

1515
*`shift-expression`*:\
16-
&emsp *`additive-expression`*\
17-
&emsp *`shift-expression`* **`<<`** *`additive-expression`*\
18-
&emsp *`shift-expression`* **`>>`** *`additive-expression`*
16+
&emsp;*`additive-expression`*\
17+
&emsp;*`shift-expression`* **`<<`** *`additive-expression`*\
18+
&emsp;*`shift-expression`* **`>>`** *`additive-expression`*
1919

2020
## Remarks
2121

0 commit comments

Comments
 (0)