Skip to content

Commit

Permalink
Merge pull request #3044 from tskit-dev/petrelharp-patch-1
Browse files Browse the repository at this point in the history
minor wording in error message
  • Loading branch information
benjeffery authored Nov 7, 2024
2 parents 5c6ecdb + d61a8b6 commit a6f8195
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 a6f8195

Please sign in to comment.