From 7bd98498ff67742a2e340d6dd0443f041212c2b4 Mon Sep 17 00:00:00 2001 From: Emanuel Andersson Date: Mon, 9 Sep 2013 19:22:05 +0200 Subject: [PATCH] Misspelled example, logwriter, in sparkey.h. --- src/sparkey.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sparkey.h b/src/sparkey.h index b0f4191..aa084bf 100644 --- a/src/sparkey.h +++ b/src/sparkey.h @@ -39,8 +39,8 @@ * \endcode * - Write to the log: * \code - * const char *key = "mykey"; - * const char *value = "this is my value"; + * const char *mykey = "mykey"; + * const char *myvalue = "this is my value"; * sparkey_returncode returncode = sparkey_logwriter_put(mywriter, strlen(mykey), (uint8_t*)mykey, strlen(myvalue), (uint8_t*)myvalue); * // TODO: check the returncode * \endcode