Skip to content

Commit fd677a3

Browse files
committed
Rename public documentation
1 parent 0656b03 commit fd677a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ What this means for you is that you should depend on Swift Crypto with a version
128128
In SwiftPM that can be easily done specifying for example `from: "1.0.0"` meaning that you support Swift Crypto in every version starting from 1.0.0 up to (excluding) 2.0.0.
129129
SemVer and Swift Crypto's Public API guarantees should result in a working program without having to worry about testing every single version for compatibility.
130130

131-
Swift Crypto 2.0.0 was released in September 2021. The only breaking change between Swift Crypto 2.0.0 and 1.0.0 was the addition of new cases in the `CryptoKitError` enumeration. For most users, then, it's safe to depend on either the 1.0.0 _or_ 2.0.0 series of releases.
131+
Swift Crypto 2.0.0 was released in September 2021. The only breaking change between Swift Crypto 2.0.0 and 1.0.0 was the addition of new cases in the `CryptoError` enumeration. For most users, then, it's safe to depend on either the 1.0.0 _or_ 2.0.0 series of releases.
132132

133133
To do so, please use the following dependency in your `Package.swift`:
134134

Sources/_CryptoExtras/RSA/RSA+BlindSigning.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ extension _RSA.BlindSigning.PublicKey {
495495
extension _RSA.BlindSigning {
496496
/// Errors defined in the RSA Blind Signatures protocol.
497497
///
498-
/// - NOTE: This type does not conform to `Swift.Error`, it is used to construct a `CryptoKitError`.
498+
/// - NOTE: This type does not conform to `Swift.Error`, it is used to construct a `CryptoError`.
499499
///
500500
/// - Seealso: [RFC 9474: Errors](https://www.rfc-editor.org/rfc/rfc9474.html#name-errors).
501501
@available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
@@ -512,7 +512,7 @@ extension _RSA.BlindSigning {
512512

513513
@available(macOS 10.15, iOS 13, watchOS 6, tvOS 13, macCatalyst 13, visionOS 1.0, *)
514514
extension CryptoKitError {
515-
/// Map an error from the RSA Blind Signatures protocol to a CryptoKitError.
515+
/// Map an error from the RSA Blind Signatures protocol to a CryptoError.
516516
init(_ error: _RSA.BlindSigning.ProtocolError) {
517517
switch error {
518518
case .messageTooLong:

0 commit comments

Comments
 (0)