From 0caeaccdd3318a6597d34e9728164471e4143366 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 25 Jul 2020 18:06:20 +0200 Subject: [PATCH] fix typo --- src/frontend/parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/parse.c b/src/frontend/parse.c index d7bdecdbf..63ca048b7 100644 --- a/src/frontend/parse.c +++ b/src/frontend/parse.c @@ -61,7 +61,7 @@ ft_getpnames(const wordlist *wl, bool check) return (struct pnode *) NULL; } - /* Conver the list to a string then parse the string */ + /* Convert the list to a string, then parse the string */ const char * const sz = wl_flatten(wl); struct pnode * const pn = ft_getpnames_from_string(sz, check); txfree((void *) sz);