]> granicus.if.org Git - graphviz/commitdiff
fix typo in edgepaint usage text
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sun, 18 Jul 2021 18:39:07 +0000 (11:39 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Thu, 22 Jul 2021 00:17:43 +0000 (17:17 -0700)
CHANGELOG.md
cmd/edgepaint/edgepaintmain.c

index e2656b27f3a35b43b375d0996a126fe2741e01f4..4f4316762f9716ed7b533a6034d6a86a4de90e82 100644 (file)
@@ -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
 
index 2fb6538448a2f6819a90c8c60f06d82397ab644e..fc5d5a5ed4ad304985ce5893eed0345159a2b7ae 100644 (file)
@@ -59,7 +59,7 @@ static FILE *openFile(char *name, char *mode, char* cmd)
 
 static void usage (char* cmd, int eval){
   fprintf(stderr, "Usage: %s <options> 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");