Browse Source

fix ASN1.swift

Signed-off-by: Elias Rad <146735585+nnsW3@users.noreply.github.com>
Elias Rad 1 year ago
parent
commit
1f54c16f4c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Sources/CryptoSwift/ASN1/ASN1.swift

+ 1 - 1
Sources/CryptoSwift/ASN1/ASN1.swift

@@ -48,7 +48,7 @@ enum ASN1 {
     /// An array of more `ASN1.Node`s
     case sequence(nodes: [Node])
     /// An integer
-    /// - Note: This ASN1 Encoder makes no assumptions about the sign and bit order of the integers passed in. The conversion from Integer to Data is your responsiblity.
+    /// - Note: This ASN1 Encoder makes no assumptions about the sign and bit order of the integers passed in. The conversion from Integer to Data is your responsibility.
     case integer(data: Data)
     /// An objectIdentifier
     case objectIdentifier(data: Data)