From 14cf76c564a928e7e8fe2ce643da8a319e4a307f Mon Sep 17 00:00:00 2001 From: Vipul Sharma Date: Tue, 30 Nov 2021 17:53:58 +0530 Subject: [PATCH] fix: doc typo --- www/docs/examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/docs/examples.md b/www/docs/examples.md index ee5c17b7..58927bff 100644 --- a/www/docs/examples.md +++ b/www/docs/examples.md @@ -97,7 +97,7 @@ message ImageSaveRequest { message ImageSaveResponse {} ``` -One way to create the request for a test is to use the binary data option `-B` to specify a binary file like we did in the prior exammple. Simply [serialize the whole](https://developers.google.com/protocol-buffers/docs/gotutorial#writing_a_message) message to a binary file first. +One way to create the request for a test is to use the binary data option `-B` to specify a binary file like we did in the prior example. Simply [serialize the whole](https://developers.google.com/protocol-buffers/docs/gotutorial#writing_a_message) message to a binary file first. Alternatively we can [use base64 string](https://developers.google.com/protocol-buffers/docs/proto3#json) representation of the image as the value for the `data` field.