Skip to content

Commit 9d19f27

Browse files
authored
Fix typo in CertificatePolicy.KeySize documentation (#47794)
* Fix typo in documentation * Update CHANGELOG.md
1 parent 8992dc6 commit 9d19f27

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

sdk/keyvault/Azure.Security.KeyVault.Certificates/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
### Breaking Changes
88

99
### Bugs Fixed
10+
- Corrected a typo in the documentation for `CertificatePolicy.KeySize`, changing the RSA key length from "4092" to "4096".
1011

1112
### Other Changes
1213

sdk/keyvault/Azure.Security.KeyVault.Certificates/src/CertificatePolicy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public CertificatePolicy()
178178
public CertificateKeyCurveName? KeyCurveName { get; set; }
179179

180180
/// <summary>
181-
/// Gets or sets the size of the RSA key. The value must be a valid RSA key length such as 2048 or 4092.
181+
/// Gets or sets the size of the RSA key. The value must be a valid RSA key length such as 2048 or 4096.
182182
/// </summary>
183183
public int? KeySize { get; set; }
184184

0 commit comments

Comments
 (0)