diff --git a/daprdocs/content/en/concepts/middleware-concept.md b/daprdocs/content/en/concepts/middleware-concept.md index 405826103..8c04043e2 100644 --- a/daprdocs/content/en/concepts/middleware-concept.md +++ b/daprdocs/content/en/concepts/middleware-concept.md @@ -49,9 +49,9 @@ Your handler implementation can include any inbound logic, outbound logic, or bo func GetHandler(metadata Metadata) fasthttp.RequestHandler { return func(h fasthttp.RequestHandler) fasthttp.RequestHandler { return func(ctx *fasthttp.RequestCtx) { - //inboud logic - h(ctx) //call the downstream handler - //outbound logic + // inboud logic + h(ctx) // call the downstream handler + // outbound logic } } } diff --git a/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/apns.md b/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/apns.md index 76aa5c5dc..81035a7ca 100644 --- a/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/apns.md +++ b/daprdocs/content/en/operations/components/setup-bindings/supported-bindings/apns.md @@ -1,4 +1,3 @@ - --- type: docs title: "Apple Push Notification Service binding spec"