Prechádzať zdrojové kódy

Updating docs to reference output stream, rather than specific OutputStreamType

Mattt Thompson 10 rokov pred
rodič
commit
be401f8143
1 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  1. 2 2
      Source/Alamofire.swift

+ 2 - 2
Source/Alamofire.swift

@@ -1312,7 +1312,7 @@ extension Request {
 // MARK: - Printable
 
 extension Request: Printable {
-    /// The textual representation used when written to an `OutputStreamType`, which includes the HTTP method and URL, as well as the response status code if a response has been received.
+    /// The textual representation used when written to an output stream, which includes the HTTP method and URL, as well as the response status code if a response has been received.
     public var description: String {
         var components: [String] = []
         if request.HTTPMethod != nil {
@@ -1397,7 +1397,7 @@ extension Request: DebugPrintable {
         return join(" \\\n\t", components)
     }
 
-    /// The textual representation used when written to an `OutputStreamType`, in the form of a cURL command.
+    /// The textual representation used when written to an output stream, in the form of a cURL command.
     public var debugDescription: String {
         return cURLRepresentation()
     }