aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Gates <tim.gates@iress.com>2020-11-24 16:17:48 +1100
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2020-11-25 12:59:12 +0200
commitf96d99fe55d60a0601c949f78a306de68a28f33b (patch)
tree15668bf1e66518e5a43c9f733c4349c0266f617a
parent4a979c0f59c4deca9501909a582ee2437808ad14 (diff)
downloadnanopb-c-f96d99fe55d60a0601c949f78a306de68a28f33b.tar.gz
docs: fix simple typo, specifing -> specifying (#614)
There is a small typo in pb_encode.h, spm_headers/nanopb/pb_encode.h. Should read `specifying` rather than `specifing`.
-rw-r--r--pb_encode.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pb_encode.h b/pb_encode.h
index 8bf78dd..b1d822f 100644
--- a/pb_encode.h
+++ b/pb_encode.h
@@ -123,7 +123,7 @@ bool pb_write(pb_ostream_t *stream, const pb_byte_t *buf, size_t count);
* structure. Call this from the callback before writing out field contents. */
bool pb_encode_tag_for_field(pb_ostream_t *stream, const pb_field_t *field);
-/* Encode field header by manually specifing wire type. You need to use this
+/* Encode field header by manually specifying wire type. You need to use this
* if you want to write out packed arrays from a callback field. */
bool pb_encode_tag(pb_ostream_t *stream, pb_wire_type_t wiretype, uint32_t field_number);