Update sample-kvdb-type-string.md

modify the note from `38.1` to `38C`
This commit is contained in:
Junliang Jiang 2021-07-28 10:10:02 +08:00 committed by GitHub
parent 1ddd18c03b
commit ba4f7df2ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);
}