@@ -37,8 +37,8 @@ To understand the protocol in more depth, consult the
3737
3838## Using this Library
3939
40- Start with the [ build instructions] ( BUILD.md ) , then read guide for including
41- this library as a [ dependency to your project] ( DEPENDENCY.md ) .
40+ Start with the [ build instructions] ( BUILD.md ) , then read the guide for including
41+ this library as a [ dependency from your project] ( DEPENDENCY.md ) .
4242
4343Once you've all set up, you can take a look at our examples:
4444
@@ -79,7 +79,7 @@ See a [complete example in C++](examples/line_sender_cpp_example.cpp).
7979The API is sequentially coupled, meaning that methods need to be called in a
8080specific order.
8181
82- For each row you need to specify a table name and at least one symbol or
82+ For each row, you need to specify a table name and at least one symbol or
8383column. Symbols must be specified before columns.
8484Once you're done with a row you must add a timestamp calling `at` or `at_now`.
8585
@@ -103,7 +103,7 @@ a failure.
103103You may then call `line_sender_error_msg(err)` and
104104`line_sender_error_get_code(err)` to extract error details.
105105
106- Once handled, the error object *must* be disposed by calling
106+ Once handled, the error object *must* be disposed of by calling
107107`line_sender_error_free(err)`.
108108
109109On error you must also call `line_sender_close(sender)`.
0 commit comments