Browse Source

Fixed comment

Brandon Toms 3 years ago
parent
commit
157b38fce5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Sources/CryptoSwift/ASN1/ASN1Encoder.swift

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

@@ -24,7 +24,7 @@ extension ASN1 {
     /// - Returns: The encoded bytes as a UInt8 array
     ///
     /// - Warning: This ASN.1 encoder has only been tested to work on certain ASN.1 data structures such as DER and PEM files. Before using this encoder for another application, ensure you test it's behavior accordingly.
-    /// - Warning: This encoder makes no assumptions regarding Integer bit layout and signage. The proper serialization of your Integers is left up to the user.
+    /// - Warning: This encoder makes no assumptions regarding Integer bit layout and signage. The proper serialization of Integers is left up to the user.
     public static func encode(_ node: ASN1.Node) -> [UInt8] {
       switch node {
         case .integer(let integer):