From 1d758ca214bfb792c82c6d8e545c2e3e00fa05c0 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 28 Nov 2020 10:16:27 +1100 Subject: [PATCH] docs: fix simple typo, reponse -> response --- tests/bandwidth-client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/bandwidth-client.c b/tests/bandwidth-client.c index 9fa07f6..d1328c9 100644 --- a/tests/bandwidth-client.c +++ b/tests/bandwidth-client.c @@ -116,7 +116,7 @@ int main(int argc, char *argv[]) printf("* %d KiB/s\n", rate); printf("\n"); - /* TCP: Query and reponse header and values */ + /* TCP: Query and response header and values */ bytes = 12 + 9 + (nb_points / 8) + ((nb_points % 8) ? 1 : 0); printf("Values and TCP Modbus overhead:\n"); printf("* %d x %d bytes\n", n_loop, bytes); @@ -153,7 +153,7 @@ int main(int argc, char *argv[]) printf("* %d KiB/s\n", rate); printf("\n"); - /* TCP:Query and reponse header and values */ + /* TCP:Query and response header and values */ bytes = 12 + 9 + (nb_points * sizeof(uint16_t)); printf("Values and TCP Modbus overhead:\n"); printf("* %d x %d bytes\n", n_loop, bytes); @@ -192,7 +192,7 @@ int main(int argc, char *argv[]) printf("* %d KiB/s\n", rate); printf("\n"); - /* TCP:Query and reponse header and values */ + /* TCP:Query and response header and values */ bytes = 12 + 9 + (nb_points * sizeof(uint16_t)); printf("Values and TCP Modbus overhead:\n"); printf("* %d x %d bytes\n", n_loop, bytes); -- libgit2 0.21.4