summaryrefslogtreecommitdiff
path: root/mysys
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2020-05-13 11:45:05 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2020-05-13 11:45:05 +0300
commit15fa70b8408a2146b300a4e1b19819addafa5929 (patch)
tree228e88d1e8e3b3d46f5a54ab6e1bdcdd4478b82e /mysys
parent19d4e023c681ecb26acf06318e69ecae6c4ec9be (diff)
parent6bc4444d7ca81786de98f27669891692c2d2e21c (diff)
downloadmariadb-git-15fa70b8408a2146b300a4e1b19819addafa5929.tar.gz
Merge 10.2 into 10.3
Diffstat (limited to 'mysys')
-rw-r--r--mysys/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/list.c b/mysys/list.c
index 10dfd7ec6ef..65da5d452cc 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)
{