diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2018-04-30 02:37:47 -0700 |
---|---|---|
committer | apache <apache@e5-web1.enlightenment.org> | 2018-04-30 02:37:47 -0700 |
commit | 70b850294e36c63107f7ec4cd647222e0e7cffe6 (patch) | |
tree | 8c64521104d42e441ca086b34906358bd4bf0760 /pages | |
parent | af3e5f95c2bb5afce63abb834713319569b70b3d (diff) |
Wiki page hash-tables.md changed with summary [Use proper snippet indicator] by Xavi Artigas
Diffstat (limited to 'pages')
-rw-r--r-- | pages/develop/guides/c/eina/hash-tables.md.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pages/develop/guides/c/eina/hash-tables.md.txt b/pages/develop/guides/c/eina/hash-tables.md.txt index ff0cb886a..142633700 100644 --- a/pages/develop/guides/c/eina/hash-tables.md.txt +++ b/pages/develop/guides/c/eina/hash-tables.md.txt | |||
@@ -121,11 +121,11 @@ The ``eina_hash_set()`` function does the same work as ``eina_hash_modify()`` bu | |||
121 | char *old_phone = NULL; | 121 | char *old_phone = NULL; |
122 | // Replace the phone number of Richard Strauss | 122 | // Replace the phone number of Richard Strauss |
123 | old_phone = eina_hash_modify(phone_book, "Richard Georg Strauss", strdup("+23 45 111-11111")); | 123 | old_phone = eina_hash_modify(phone_book, "Richard Georg Strauss", strdup("+23 45 111-11111")); |
124 | // ... | 124 | [...] |
125 | old_phone = eina_hash_set(phone_book, "Philippe de Magalhães", strdup("+33 6 111-11111")); | 125 | old_phone = eina_hash_set(phone_book, "Philippe de Magalhães", strdup("+33 6 111-11111")); |
126 | // ... | 126 | [...] |
127 | old_phone = eina_hash_set(phone_book, "Richard Georg Strauss", strdup("+23 45 111-117711")); | 127 | old_phone = eina_hash_set(phone_book, "Richard Georg Strauss", strdup("+23 45 111-117711")); |
128 | // ... | 128 | [...] |
129 | ``` | 129 | ``` |
130 | 130 | ||
131 | > **NOTE**: | 131 | > **NOTE**: |