Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public boolean processBytesFromPeer(ByteBuffer bytes) throws GeneralSecurityExce
return true;
}
int remaining = bytes.remaining();
// Call handshaker service to proceess the bytes.
// Call handshaker service to process the bytes.
if (outputFrame == null) {
checkState(!isClient, "Client handshaker should not process any frame at the beginning.");
outputFrame = handshaker.startServerHandshake(bytes);
Expand Down
2 changes: 1 addition & 1 deletion services/src/main/proto/grpc/binlog/v1/binarylog.proto
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ message ClientHeader {

// A single process may be used to run multiple virtual
// servers with different identities.
// The authority is the name of such a server identitiy.
// The authority is the name of such a server identity.
// It is typically a portion of the URI in the form of
// <host> or <host>:<port> .
string authority = 3;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ message ExtensionRequest {
message ServerReflectionResponse {
string valid_host = 1;
ServerReflectionRequest original_request = 2;
// The server set one of the following fields accroding to the message_request
// The server set one of the following fields according to the message_request
// in the request.
oneof message_response {
// This message is used to answer file_by_filename, file_containing_symbol,
Expand All @@ -91,7 +91,7 @@ message ServerReflectionResponse {
// that were previously sent in response to earlier requests in the stream.
FileDescriptorResponse file_descriptor_response = 4;

// This message is used to answer all_extension_numbers_of_type requst.
// This message is used to answer all_extension_numbers_of_type request.
ExtensionNumberResponse all_extension_numbers_response = 5;

// This message is used to answer list_services request.
Expand Down