Explorar o código

Fixed typo in middleware docs.

Function definition should have an ending colon.
Peter Kowalczyk %!s(int64=10) %!d(string=hai) anos
pai
achega
48241ec9c4
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      docs/topics/http/middleware.txt

+ 1 - 1
docs/topics/http/middleware.txt

@@ -223,7 +223,7 @@ must test for streaming responses and adjust their behavior accordingly::
     Response middleware may wrap it in a new generator, but must not consume
     it. Wrapping is typically implemented as follows::
 
-        def wrap_streaming_content(content)
+        def wrap_streaming_content(content):
             for chunk in content:
                 yield alter_content(chunk)