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 Nov 2, 2024
1 parent 9acedd2 commit 6fe618d
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 6fe618d

Please sign in to comment.