Browse Source

Fix documentation and typo. (#461)

George Barnett 6 years ago
parent
commit
5f6394e951
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Sources/SwiftGRPCNIO/GRPCClientChannelHandler.swift

+ 4 - 4
Sources/SwiftGRPCNIO/GRPCClientChannelHandler.swift

@@ -221,11 +221,11 @@ extension GRPCClientChannelHandler {
   }
 }
 
-/// Client user evenets.
-///
-/// - cancelled: The call has been cancelled.
-/// - timedOut: The call did not complete before the deadline was exceeded.
+/// Client user events.
 public enum GRPCClientUserEvent {
+  /// The call has been cancelled.
   case cancelled
+
+  /// The call did not complete before the deadline was exceeded.
   case timedOut(GRPCTimeout)
 }