Skip to content

Commit 22fe5c8

Browse files
authored
Add backticks in _rot{l,r}{8,16} intrinsics reference
1 parent 27a0985 commit 22fe5c8

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

docs/intrinsics/rotl8-rotl16.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ f1_keywords: ["_rotl8", "_rotl16"]
66
helpviewer_keywords: ["_rotl8 intrinsic", "_rotl16 intrinsic"]
77
ms.assetid: 8c519ab6-aef9-4f07-a387-daee8408368f
88
---
9-
# _rotl8, _rotl16
9+
# `_rotl8`, `_rotl16`
1010

1111
**Microsoft Specific**
1212

@@ -27,10 +27,10 @@ unsigned short _rotl16(
2727

2828
### Parameters
2929

30-
*value*\
30+
*`value`*\
3131
[in] The value to rotate.
3232

33-
*shift*\
33+
*`shift`*\
3434
[in] The number of bits to rotate.
3535

3636
## Return value
@@ -44,7 +44,7 @@ The rotated value.
4444
|`_rotl8`|x86, ARM, x64, ARM64|
4545
|`_rotl16`|x86, ARM, x64, ARM64|
4646

47-
**Header file** \<intrin.h>
47+
**Header file**: `<intrin.h>`
4848

4949
## Remarks
5050

@@ -93,5 +93,5 @@ Rotating unsigned short 0x12 left by 10 bits gives 0x4800
9393

9494
## See also
9595

96-
[_rotr8, _rotr16](../intrinsics/rotr8-rotr16.md)\
96+
[`_rotr8`, `_rotr16`](../intrinsics/rotr8-rotr16.md)\
9797
[Compiler intrinsics](../intrinsics/compiler-intrinsics.md)

docs/intrinsics/rotr8-rotr16.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ f1_keywords: ["_rotr16", "_rotr8"]
66
helpviewer_keywords: ["_rotr8 intrinsic", "_rotr16 intrinsic"]
77
ms.assetid: dfbd2c82-82b4-427a-ad52-51609027ebff
88
---
9-
# _rotr8, _rotr16
9+
# `_rotr8`, `_rotr16`
1010

1111
**Microsoft Specific**
1212

@@ -27,10 +27,10 @@ unsigned short _rotr16(
2727

2828
### Parameters
2929

30-
*value*\
30+
*`value`*\
3131
[in] The value to rotate.
3232

33-
*shift*\
33+
*`shift`*\
3434
[in] The number of bits to rotate.
3535

3636
## Return value
@@ -44,7 +44,7 @@ The rotated value.
4444
|`_rotr8`|x86, ARM, x64, ARM64|
4545
|`_rotr16`|x86, ARM, x64, ARM64|
4646

47-
**Header file** \<intrin.h>
47+
**Header file**: `<intrin.h>`
4848

4949
## Remarks
5050

@@ -94,5 +94,5 @@ Rotating unsigned short 0x12 right by 10 bits gives 0x480
9494

9595
## See also
9696

97-
[_rotl8, _rotl16](../intrinsics/rotl8-rotl16.md)\
97+
[`_rotl8`, `_rotl16`](../intrinsics/rotl8-rotl16.md)\
9898
[Compiler intrinsics](../intrinsics/compiler-intrinsics.md)

0 commit comments

Comments
 (0)