From 1977a507710f777addcfe56af34920567782a556 Mon Sep 17 00:00:00 2001 From: Arun Thakur Date: Tue, 13 Aug 2024 00:20:38 +0530 Subject: [PATCH] [centrality] minor changes to docs --- doc/metrics/pgr_betweennessCentrality.rst | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/doc/metrics/pgr_betweennessCentrality.rst b/doc/metrics/pgr_betweennessCentrality.rst index dfac101881..95be99305e 100644 --- a/doc/metrics/pgr_betweennessCentrality.rst +++ b/doc/metrics/pgr_betweennessCentrality.rst @@ -32,9 +32,9 @@ betweenness centrality score of all vertices. This implementation work for both directed and undirected graphs. -- Running time: :math:`\Theta(VE)` time -- Running space: :math:`\Theta(VE)` space. -- Throws when there are no edges in the graph. +- Running time: :math:`\Theta(VE)` +- Running space: :math:`\Theta(VE)` +- Throws when there are no edges in the graph Signatures ------------------------------------------------------------------------------- @@ -46,8 +46,7 @@ Signatures pgr_betweennessCentrality(`Edges SQL`_, [``directed``]) - | Returns set of ```(seq, vid, centrality)``` - | OR EMPTY SET + | Returns set of ``(seq, vid, centrality)`` .. TODO: Fix this when docqueries are made