Merge pull request #83 from woniua/patch-1

Update sample-kvdb-type-string.md
This commit is contained in:
朱天龙 (Armink)
2021-07-28 10:28:05 +08:00
committed by GitHub
+1 -1
View File
@@ -35,7 +35,7 @@ void kvdb_type_string_sample(fdb_kvdb_t kvdb)
{ /* CHANGE the KV value */
char temp_data[10] = "38C";
/* change the "temp" KV's value to "38.1" */
/* change the "temp" KV's value to "38C" */
fdb_kv_set(kvdb, "temp", temp_data);
FDB_INFO("set 'temp' value to %s\n", temp_data);
}