Spelling fixes (#443)

Co-authored-by: Vyacheslav Egorov <vegorov@google.com>
This commit is contained in:
Kevin Moore 2021-02-01 00:16:10 -08:00 committed by GitHub
parent 32fbc03c63
commit 1327ad7416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

View File

@ -44,7 +44,7 @@ be nullsafe and thus require SDK >= 2.12.
## 2.6.0 ## 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 This allows callers to provide their own transport configuration, such
as their own implementation of streams and sinks instead of sockets. as their own implementation of streams and sinks instead of sockets.
@ -196,7 +196,7 @@ channel is not yet open.
## 0.6.0 ## 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 ## 0.5.0

View File

@ -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. 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 Install 'webdev', by running
@ -33,7 +33,7 @@ Compile and run the website with:
$ webdev serve web:9000 $ 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. You can then navigate to http://localhost:9000/ to try out the example.

View File

@ -190,8 +190,8 @@ class Tester {
/// payload set to current timestamp. Timestamp format is irrelevant, and /// payload set to current timestamp. Timestamp format is irrelevant, and
/// resolution is in nanoseconds. /// resolution is in nanoseconds.
/// Client adds a `x-user-ip` header with value `1.2.3.4` to the request. /// 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 /// This is done since some proxies such as GFE will not cache requests
/// localhost. /// from localhost.
/// Client marks the request as cacheable by setting the cacheable flag in /// Client marks the request as cacheable by setting the cacheable flag in
/// the request context. Longer term this should be driven by the method /// the request context. Longer term this should be driven by the method
/// option specified in the proto file itself. /// 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 /// if using a usable auth implementation, it may specify the file location
/// in the environment variable GOOGLE_APPLICATION_CREDENTIALS /// in the environment variable GOOGLE_APPLICATION_CREDENTIALS
/// * optionally uses the flag `--oauth_scope` for the oauth scope if /// * 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 /// credential. For testing against grpc-test.sandbox.googleapis.com, oauth
/// scope "https://www.googleapis.com/auth/xapi.zoo" should be used. /// scope "https://www.googleapis.com/auth/xapi.zoo" should be used.
/// ///