diff options
author | Anel Husakovic <anel@mariadb.org> | 2020-05-06 18:14:26 +0200 |
---|---|---|
committer | Anel Husakovic <anel@mariadb.org> | 2020-05-06 18:15:32 +0200 |
commit | f7ba675555e84f51a017c348686079a9f4ba954b (patch) | |
tree | 58bdeb8f0ae7921b61d82def44851a2e8b704aaf /mysys | |
parent | 1af74d523a70622e8abb528d4fd991d72b90c887 (diff) | |
download | mariadb-git-f7ba675555e84f51a017c348686079a9f4ba954b.tar.gz |
MDEV-22344: Fix typos in comments
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/list.c b/mysys/list.c index 8f4c934f64e..380de83c031 100644 --- a/mysys/list.c +++ b/mysys/list.c @@ -14,7 +14,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1335 USA */ /* - Code for handling dubble-linked lists in C + Code for handling doubly linked lists in C */ #include "mysys_priv.h" @@ -22,7 +22,7 @@ - /* Add a element to start of list */ + /* Add an element to start of list */ LIST *list_add(LIST *root, LIST *element) { |