[ncplane_putc_yx] spelling

This commit is contained in:
nick black 2021-12-12 15:35:31 -05:00
parent cf754a6e02
commit 31b328c688
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

View File

@ -1877,7 +1877,7 @@ int ncplane_putc_yx(ncplane* n, int y, int x, const nccell* c){
// nccell_extended_gcluster(). so we must copy and free it.
char* egc = nccell_strdup(n, c);
if(egc == NULL){
logerror("coudln't duplicate cell\n");
logerror("couldn't duplicate cell\n");
return -1;
}
int r = ncplane_put(n, y, x, egc, cols, c->stylemask, c->channels, strlen(egc));