Browse Source

Fix typo "crated" to "created" (#3710)

### Goals :soccer:
- Fixing a typo within Request.swift

### Implementation Details :construction:
- No architectural changes or new functionality

### Testing Details :mag:
- No tests required
Tony 2 years ago
parent
commit
1264fe105b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Request.swift

+ 1 - 1
Source/Request.swift

@@ -219,7 +219,7 @@ public class Request {
     public var tasks: [URLSessionTask] { $mutableState.tasks }
     /// First `URLSessionTask` created on behalf of the `Request`.
     public var firstTask: URLSessionTask? { tasks.first }
-    /// Last `URLSessionTask` crated on behalf of the `Request`.
+    /// Last `URLSessionTask` created on behalf of the `Request`.
     public var lastTask: URLSessionTask? { tasks.last }
     /// Current `URLSessionTask` created on behalf of the `Request`.
     public var task: URLSessionTask? { lastTask }