Skip to content

Commit eeb3268

Browse files
authored
chore: remove repetitive words (#1653)
Signed-off-by: pavedroad <[email protected]>
1 parent 759d76d commit eeb3268

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/routeguide-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ async fn print_features(client: &mut RouteGuideClient<Channel>) -> Result<(), Bo
678678
As in the simple RPC, we pass a single value request. However, instead of getting a
679679
single value back, we get a stream of `Features`.
680680

681-
We use the the `message()` method from the `tonic::Streaming` struct to repeatedly read in the
681+
We use the `message()` method from the `tonic::Streaming` struct to repeatedly read in the
682682
server's responses to a response protocol buffer object (in this case a `Feature`) until there are
683683
no more messages left in the stream.
684684

tonic/src/transport/service/add_origin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ where
4949
// Split the request into the head and the body.
5050
let (mut head, body) = req.into_parts();
5151

52-
// Update the the request URI
52+
// Update the request URI
5353
head.uri = {
5454
// Split the request URI into parts.
5555
let mut uri: http::uri::Parts = head.uri.into();

0 commit comments

Comments
 (0)