summaryrefslogtreecommitdiffstats
path: root/libnetdata/string
diff options
context:
space:
mode:
authorCosta Tsaousis <costa@netdata.cloud>2022-09-20 10:33:19 +0300
committerGitHub <noreply@github.com>2022-09-20 10:33:19 +0300
commit68251d586f9c5547ba20c41942124e0420fd1547 (patch)
tree6a466176bf12fdfe0a95905c262ce62c20c394d2 /libnetdata/string
parentb89c914a1858d5f58b11ba8e3e1e5f46ab9bafa2 (diff)
dictionary updated documentation and cosmetics (#13679)
* dictionary updated documentation and cosmetics * improved dictionaries views unit test
Diffstat (limited to 'libnetdata/string')
-rw-r--r--libnetdata/string/string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libnetdata/string/string.c b/libnetdata/string/string.c
index afa2bbe083..c3aac42345 100644
--- a/libnetdata/string/string.c
+++ b/libnetdata/string/string.c
@@ -12,8 +12,8 @@ struct netdata_string {
uint32_t length; // the string length including the terminating '\0'
REFCOUNT refcount; // how many times this string is used
- // We use a signed number to be able to detect duplicate frees of a string.
- // If at any point this goes below zero, we have a duplicate free.
+ // We use a signed number to be able to detect duplicate frees of a string.
+ // If at any point this goes below zero, we have a duplicate free.
const char str[]; // the string itself, is appended to this structure
};