From 20f618733190eea2622dedcfb74479b360b7a177 Mon Sep 17 00:00:00 2001 From: Ali Sol <30648015+alisolphp@users.noreply.github.com> Date: Tue, 21 Oct 2025 11:53:24 +0330 Subject: [PATCH 1/3] =?UTF-8?q?docs(benchmark):=20fix=20singular=20form=20?= =?UTF-8?q?in=20=E2=80=9Ca=20histogram=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change “a histograms” → “a histogram” for correct article–noun agreement. File: Documentation/benchmark.md This is a typo-only fix; no content changes. --- Documentation/benchmark.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/benchmark.md b/Documentation/benchmark.md index 5d2efda8aa76..1b0a88ce830a 100644 --- a/Documentation/benchmark.md +++ b/Documentation/benchmark.md @@ -24,7 +24,7 @@ that are supported. ## Varying Payload Sizes (Weighted Random Distribution) The `benchmain` utility supports two flags, `-reqPayloadCurveFiles` and -`-respPayloadCurveFiles`, that can be used to specify a histograms representing +`-respPayloadCurveFiles`, that can be used to specify a histogram representing a weighted random distribution of request and response payload sizes, respectively. This is useful to simulate workloads with arbitrary payload sizes. From 258e414ea66ad4806249dbc856a3febd40ae99b6 Mon Sep 17 00:00:00 2001 From: Ali Sol <30648015+alisolphp@users.noreply.github.com> Date: Tue, 21 Oct 2025 11:54:08 +0330 Subject: [PATCH 2/3] =?UTF-8?q?docs(benchmark):=20fix=20plural=20agreement?= =?UTF-8?q?=20in=20=E2=80=9CThe=20options=20take=20=E2=80=A6=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change “The options takes …” → “The options take …” to match the plural subject. File: Documentation/benchmark.md Typo/grammar-only change; no content or wording beyond the verb fix. --- Documentation/benchmark.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/benchmark.md b/Documentation/benchmark.md index 1b0a88ce830a..fcabbe6c426c 100644 --- a/Documentation/benchmark.md +++ b/Documentation/benchmark.md @@ -29,7 +29,7 @@ a weighted random distribution of request and response payload sizes, respectively. This is useful to simulate workloads with arbitrary payload sizes. -The options takes a comma-separated list of file paths as value. Each file must +The options take a comma-separated list of file paths as value. Each file must be a valid CSV file with three columns in each row. Each row represents a range of payload sizes (first two columns) and the weight associated with that range (third column). For example, consider the below file: From 808c7e02e2090a7ab76178cc504877717e9cf69f Mon Sep 17 00:00:00 2001 From: Ali Sol <30648015+alisolphp@users.noreply.github.com> Date: Tue, 21 Oct 2025 11:54:46 +0330 Subject: [PATCH 3/3] =?UTF-8?q?docs(grpc-auth-support):=20use=20verb=20phr?= =?UTF-8?q?ase=20=E2=80=9Clook=20up=E2=80=9D=20instead=20of=20noun=20?= =?UTF-8?q?=E2=80=9Clookup=E2=80=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change “… simply lookup the authorization key.” → “… simply look up the authorization key.” “Look up” is the correct verb form; “lookup” is a noun. File: Documentation/grpc-auth-support.md Spelling/wording-only fix; no content changes. --- Documentation/grpc-auth-support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/grpc-auth-support.md b/Documentation/grpc-auth-support.md index c8c2a556c63e..ad681d7ac23d 100644 --- a/Documentation/grpc-auth-support.md +++ b/Documentation/grpc-auth-support.md @@ -33,7 +33,7 @@ Clients may use to store tokens and other authentication-related data. To gain access to the `metadata.MD` object, a server may use [metadata.FromIncomingContext](https://godoc.org/google.golang.org/grpc/metadata#FromIncomingContext). -With a reference to `metadata.MD` on the server, one needs to simply lookup the +With a reference to `metadata.MD` on the server, one needs to simply look up the `authorization` key. Note, all keys stored within `metadata.MD` are normalized to lowercase. See [here](https://godoc.org/google.golang.org/grpc/metadata#New).