From b539e3f20ec443d7046153ed4623da277da89170 Mon Sep 17 00:00:00 2001 From: CK Tan Date: Thu, 9 Jul 2020 16:50:57 -0700 Subject: [PATCH] minor --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 6b5b544..094d2ae 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The steps for getting values from our file is usually : 1. Parse the whole TOML file. 2. Get a single table from the file. 3. Find a value from the table. -4. Convert that value to the appropriate type (I.E. string, int). +4. Convert that value to the appropriate type, i.e., string, int, etc. 5. Then, free up that memory if needed. Below is an example of parsing the values from the example table. @@ -95,7 +95,6 @@ toml_free(conf); /* Free any values returned from `toml_rto*`. */ free(host); -free(port); ``` ## Building