From: Matthew Fernandez Date: Sun, 18 Jul 2021 18:39:07 +0000 (-0700) Subject: fix typo in edgepaint usage text X-Git-Tag: 2.49.0~50^2~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7d7da4c6eedeebc2b540062f7e11e18ff954a2f;p=graphviz fix typo in edgepaint usage text --- diff --git a/CHANGELOG.md b/CHANGELOG.md index e2656b27f..4f4316762 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - The attached dot file causes a segfault when processed #2095 +- typo in `edgepaint` usage text ## [2.48.0] - 2021-07-17 diff --git a/cmd/edgepaint/edgepaintmain.c b/cmd/edgepaint/edgepaintmain.c index 2fb653844..fc5d5a5ed 100644 --- a/cmd/edgepaint/edgepaintmain.c +++ b/cmd/edgepaint/edgepaintmain.c @@ -59,7 +59,7 @@ static FILE *openFile(char *name, char *mode, char* cmd) static void usage (char* cmd, int eval){ fprintf(stderr, "Usage: %s gv file with 2D coordinates.\n", cmd); - fprintf(stderr, "Find a color assignment of the edges, such that edges that cross at small angle have as different as posible.\n"); + fprintf(stderr, "Find a color assignment of the edges, such that edges that cross at small angle have as different as possible.\n"); fprintf(stderr, "Options are: \n"); fprintf(stderr, " -accuracy=e : accuracy with which to find the maximally different coloring for each node with regard to its neighbors. Default 0.01.\n"); fprintf(stderr, " -angle=a : if edge crossing is less than that angle a, then make the edge colors different. Default 15.\n");