From 4375fdd56583d2a92de16e00c6bd17beb9a79739 Mon Sep 17 00:00:00 2001 From: Jerome Benoit Date: Sat, 29 Oct 2022 14:15:30 +0100 Subject: [PATCH] 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 --- src/graph/iterators.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.30.2