From 1327ad7416b7a50dd81f61e7f3be6e2fd3164d33 Mon Sep 17 00:00:00 2001 From: Kevin Moore Date: Mon, 1 Feb 2021 00:16:10 -0800 Subject: [PATCH] Spelling fixes (#443) Co-authored-by: Vyacheslav Egorov --- CHANGELOG.md | 4 ++-- example/grpc-web/README.md | 4 ++-- interop/lib/src/client.dart | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8a5822..762c301 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,7 +44,7 @@ be nullsafe and thus require SDK >= 2.12. ## 2.6.0 -* Create gRPC servers and clients with [Server|Client]TransportConnnection. +* Create gRPC servers and clients with [Server|Client]TransportConnection. This allows callers to provide their own transport configuration, such as their own implementation of streams and sinks instead of sockets. @@ -196,7 +196,7 @@ channel is not yet open. ## 0.6.0 -* Dart SDK upper constraint raised to declare compatability with Dart 2.0 stable. +* Dart SDK upper constraint raised to declare compatibility with Dart 2.0 stable. ## 0.5.0 diff --git a/example/grpc-web/README.md b/example/grpc-web/README.md index 4ede3a9..5e8ce97 100644 --- a/example/grpc-web/README.md +++ b/example/grpc-web/README.md @@ -3,7 +3,7 @@ The grpc-web example shows how to use the Dart gRPC library with a gRPC-Web capa This is meant to be used with the echo example provided by the grpc-web repository. The definition of the service is given in echo.proto. -# Prerequistes +# Prerequisites Install 'webdev', by running @@ -33,7 +33,7 @@ Compile and run the website with: $ webdev serve web:9000 ``` -Note that the alternate port (9000) is necessary because the grpc-web server runs the grpc server on port 8080 by default (the save as webdev). +Note that the alternate port (9000) is necessary because the grpc-web server runs the grpc server on port 8080 by default (the same as webdev). You can then navigate to http://localhost:9000/ to try out the example. diff --git a/interop/lib/src/client.dart b/interop/lib/src/client.dart index 8c34872..d8aa598 100644 --- a/interop/lib/src/client.dart +++ b/interop/lib/src/client.dart @@ -190,8 +190,8 @@ class Tester { /// payload set to current timestamp. Timestamp format is irrelevant, and /// resolution is in nanoseconds. /// Client adds a `x-user-ip` header with value `1.2.3.4` to the request. - /// This is done since some proxys such as GFE will not cache requests from - /// localhost. + /// This is done since some proxies such as GFE will not cache requests + /// from localhost. /// Client marks the request as cacheable by setting the cacheable flag in /// the request context. Longer term this should be driven by the method /// option specified in the proto file itself. @@ -833,7 +833,7 @@ class Tester { /// if using a usable auth implementation, it may specify the file location /// in the environment variable GOOGLE_APPLICATION_CREDENTIALS /// * optionally uses the flag `--oauth_scope` for the oauth scope if - /// implementator wishes to use service account credential instead of JWT + /// implementor wishes to use service account credential instead of JWT /// credential. For testing against grpc-test.sandbox.googleapis.com, oauth /// scope "https://www.googleapis.com/auth/xapi.zoo" should be used. ///