Parcourir la source

docs: fix simple typo, reponse -> response

There is a small typo in tests/bandwidth-client.c.

Should read `response` rather than `reponse`.
Tim Gates il y a 4 ans
Parent
commit
1d758ca214
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      tests/bandwidth-client.c

+ 3 - 3
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);