From 45eed6a03f01b63e8ba41dfbaa3ba8864a6ea25f Mon Sep 17 00:00:00 2001 From: Loong Dai Date: Mon, 29 Aug 2022 11:33:13 +0800 Subject: [PATCH 1/2] fix a typo (#2748) Signed-off-by: Loong Signed-off-by: Loong --- daprdocs/content/en/developing-applications/middleware.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/middleware.md b/daprdocs/content/en/developing-applications/middleware.md index 282cffd2d..49b420ecd 100644 --- a/daprdocs/content/en/developing-applications/middleware.md +++ b/daprdocs/content/en/developing-applications/middleware.md @@ -56,7 +56,7 @@ func (m *customMiddleware) GetHandler(metadata Metadata) (func(fasthttp.RequestH var err error return func(h fasthttp.RequestHandler) fasthttp.RequestHandler { return func(ctx *fasthttp.RequestCtx) { - // inboud logic + // inbound logic h(ctx) // call the downstream handler // outbound logic } From c5df77706c254d10eee0f1c17a2a082d2616b006 Mon Sep 17 00:00:00 2001 From: "Mr.Black" Date: Mon, 29 Aug 2022 12:20:06 +0800 Subject: [PATCH 2/2] fix typo (#2751) Signed-off-by: RcXu Signed-off-by: RcXu Co-authored-by: Mark Fussell --- .../en/reference/cli/dapr-mtls/dapr-mtls-renew-certificate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/reference/cli/dapr-mtls/dapr-mtls-renew-certificate.md b/daprdocs/content/en/reference/cli/dapr-mtls/dapr-mtls-renew-certificate.md index 35682f4ae..71b154f7b 100644 --- a/daprdocs/content/en/reference/cli/dapr-mtls/dapr-mtls-renew-certificate.md +++ b/daprdocs/content/en/reference/cli/dapr-mtls/dapr-mtls-renew-certificate.md @@ -48,7 +48,7 @@ Generates new root and issuer certificates for the Kubernetes cluster with a giv ```bash dapr mtls renew-certificate -k --valid-until ``` -Generates new root and issuer certificates for the Kubernetes cluster with a given validity time and restarts the Dapr control place services. +Generates new root and issuer certificates for the Kubernetes cluster with a given validity time and restarts the Dapr control plane services. ```bash dapr mtls renew-certificate -k --valid-until --restart ```