summaryrefslogtreecommitdiff
path: root/mysys/list.c
diff options
context:
space:
mode:
authorAnel Husakovic <anel@mariadb.org>2020-05-06 18:14:26 +0200
committerAnel Husakovic <anel@mariadb.org>2020-05-06 18:15:32 +0200
commitf7ba675555e84f51a017c348686079a9f4ba954b (patch)
tree58bdeb8f0ae7921b61d82def44851a2e8b704aaf /mysys/list.c
parent1af74d523a70622e8abb528d4fd991d72b90c887 (diff)
downloadmariadb-git-f7ba675555e84f51a017c348686079a9f4ba954b.tar.gz
MDEV-22344: Fix typos in comments
Diffstat (limited to 'mysys/list.c')
-rw-r--r--mysys/list.c4
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)
{