Skip to content

Commit

Permalink
Fix typo in CertificatePolicy.KeySize documentation (#47794)
Browse files Browse the repository at this point in the history
* Fix typo in documentation

* Update CHANGELOG.md
  • Loading branch information
JonathanCrd authored Jan 11, 2025
1 parent 8992dc6 commit 9d19f27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### Breaking Changes

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

### Other Changes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public CertificatePolicy()
public CertificateKeyCurveName? KeyCurveName { get; set; }

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

Expand Down

0 comments on commit 9d19f27

Please sign in to comment.