Skip to content

Commit

Permalink
minor wording in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
petrelharp authored and benjeffery committed Nov 7, 2024
1 parent 5c6ecdb commit d61a8b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/tskit/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,10 @@ tsk_strerror_internal(int err)

/* Edge errors */
case TSK_ERR_NULL_PARENT:
ret = "Edge in parent is null. (TSK_ERR_NULL_PARENT)";
ret = "Edge parent is null. (TSK_ERR_NULL_PARENT)";
break;
case TSK_ERR_NULL_CHILD:
ret = "Edge in parent is null. (TSK_ERR_NULL_CHILD)";
ret = "Edge child is null. (TSK_ERR_NULL_CHILD)";
break;
case TSK_ERR_EDGES_NOT_SORTED_PARENT_TIME:
ret = "Edges must be listed in (time[parent], child, left) order;"
Expand Down

0 comments on commit d61a8b6

Please sign in to comment.