Skip to content

Commit

Permalink
doc: fix documentation of 'neighbors' argument of Graph.vertex_connec…
Browse files Browse the repository at this point in the history
…tivity(), closes #740
  • Loading branch information
ntamas committed Dec 7, 2023
1 parent ecace80 commit 5f386c0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/_igraph/graphobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -15729,8 +15729,9 @@ struct PyMethodDef igraphmodule_Graph_methods[] = {
" graph, therefore it is advised to set this to C{True}. The parameter\n"
" is ignored if the connectivity between two given vertices is computed.\n"
"@param neighbors: tells igraph what to do when the two vertices are\n"
" connected. C{\"error\"} raises an exception, C{\"infinity\"} returns\n"
" infinity, C{\"ignore\"} ignores the edge.\n"
" connected. C{\"error\"} raises an exception, C{\"negative\"} returns\n"
" a negative value, C{\"number_of_nodes\"} or C{\"nodes\"} returns the\n"
" number of nodes, or C{\"ignore\"} ignores the edge.\n"
"@return: the vertex connectivity\n"
},

Expand Down

0 comments on commit 5f386c0

Please sign in to comment.