option: fix typo in option.c

seperated -> separated
This commit is contained in:
Ikko Ashimine
2021-06-16 01:08:23 +09:00
committed by GitHub
parent 19ccda230e
commit dbf8236764

View File

@@ -5370,7 +5370,7 @@ static int put_setstring(FILE *fd, char *cmd, char *name,
} }
p = buf; p = buf;
while (*p != NUL) { while (*p != NUL) {
// for each comma seperated option part, append value to // for each comma separated option part, append value to
// the option, :set rtp+=value // the option, :set rtp+=value
if (fprintf(fd, "%s %s+=", cmd, name) < 0) { if (fprintf(fd, "%s %s+=", cmd, name) < 0) {
goto fail; goto fail;