From: Jerome Benoit Date: Sat, 10 Sep 2022 11:37:09 +0000 (+0100) Subject: source typo X-Git-Tag: archive/raspbian/0.9.10+ds-1+rpi1^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=edbab6eee665c526ef8cd99664eff03b6eec32ae;p=igraph.git source typo Origin: vendor, Debian Forwarded: https://github.com/igraph/igraph/pull/2192 Comment: spelling-error-in-binary Last-Update: 2022-09-09 Correct spelling error as reported by lintian in some binaries; meant to silence lintian and eventually to be submitted to the upstream maintainer. Gbp-Pq: Name upstream-source-lintian-spelling.patch --- diff --git a/src/graph/iterators.c b/src/graph/iterators.c index 51244c7..cdf3988 100644 --- a/src/graph/iterators.c +++ b/src/graph/iterators.c @@ -772,7 +772,7 @@ int igraph_vit_create(const igraph_t *graph, IGRAPH_ERROR("Cannot create sequence iterator, starting vertex ID out of range.", IGRAPH_EINVAL); } if (vs.data.seq.to < 0 || vs.data.seq.to >= igraph_vcount(graph)) { - IGRAPH_ERROR("Cannot create sequece iterator, ending vertex ID out of range.", IGRAPH_EINVAL); + IGRAPH_ERROR("Cannot create sequence iterator, ending vertex ID out of range.", IGRAPH_EINVAL); } vit->type = IGRAPH_VIT_SEQ; vit->pos = vs.data.seq.from; @@ -1860,7 +1860,7 @@ int igraph_eit_create(const igraph_t *graph, IGRAPH_ERROR("Cannot create sequence iterator, starting edge ID out of range.", IGRAPH_EINVAL); } if (es.data.seq.to < 0 || es.data.seq.to >= igraph_ecount(graph)) { - IGRAPH_ERROR("Cannot create sequece iterator, ending edge ID out of range.", IGRAPH_EINVAL); + IGRAPH_ERROR("Cannot create sequence iterator, ending edge ID out of range.", IGRAPH_EINVAL); } eit->type = IGRAPH_EIT_SEQ; eit->pos = es.data.seq.from;