From: Matthew Fernandez Date: Fri, 16 Jul 2021 03:46:41 +0000 (-0700) Subject: fix a couple of comment typos X-Git-Tag: 2.49.0~55^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1399426e3f0e7744f9d0f08ce8d8d55f28f31193;p=graphviz fix a couple of comment typos --- diff --git a/lib/gvc/gvrender.c b/lib/gvc/gvrender.c index 2d1219dc7..04ee971fb 100644 --- a/lib/gvc/gvrender.c +++ b/lib/gvc/gvrender.c @@ -458,7 +458,7 @@ void gvrender_set_pencolor(GVJ_t * job, char *name) gvcolor_t *color = &(job->obj->pencolor); char *cp = NULL; - if ((cp = strchr(name, ':'))) /* if its a color list, then use only first */ + if ((cp = strchr(name, ':'))) // if it’s a color list, then use only first *cp = '\0'; if (gvre) { gvrender_resolve_color(job->render.features, name, color); @@ -475,7 +475,7 @@ void gvrender_set_fillcolor(GVJ_t * job, char *name) gvcolor_t *color = &(job->obj->fillcolor); char *cp = NULL; - if ((cp = strchr(name, ':'))) /* if its a color list, then use only first */ + if ((cp = strchr(name, ':'))) // if it’s a color list, then use only first *cp = '\0'; if (gvre) { gvrender_resolve_color(job->render.features, name, color);