From c22e7901789a5d177a23b394dc510bccec20127a Mon Sep 17 00:00:00 2001 From: kaldonia Date: Thu, 5 Oct 2023 18:31:35 +0200 Subject: [PATCH] Fixed typo in docstring --- src/graph_tool/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph_tool/__init__.py b/src/graph_tool/__init__.py index 402776f..246bf9f 100644 --- a/src/graph_tool/__init__.py +++ b/src/graph_tool/__init__.py @@ -1630,7 +1630,7 @@ def remove_edge(self, edge): .. note:: This operation is normally :math:`O(k_s + k_t)`, where :math:`k_s` - and :math:`k_s` are the total degrees of the source and target + and :math:`k_t` are the total degrees of the source and target vertices, respectively. However, if :meth:`~Graph.set_fast_edge_removal` is set to `True`, this operation becomes :math:`O(1)`.