浏览代码

Fixed comment

Brandon Toms 3 年之前
父节点
当前提交
157b38fce5
共有 1 个文件被更改,包括 1 次插入1 次删除
  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):