Browse Source

Fix typo in http2 error code description (#127)

George Barnett 4 months ago
parent
commit
dd1e099e2c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Sources/GRPCNIOTransportCore/GRPCStreamStateMachine.swift

+ 1 - 1
Sources/GRPCNIOTransportCore/GRPCStreamStateMachine.swift

@@ -1992,7 +1992,7 @@ extension HTTP2ErrorCode {
     case .frameSizeError:
       suffix = "frame size error"
     case .refusedStream:
-      suffix = "fefused stream"
+      suffix = "refused stream"
     case .cancel:
       suffix = "cancel"
     case .compressionError: