Skip to content

Commit 72be96c

Browse files
committed
adding/fixing comments to functions starting with m
1 parent 8b6af4f commit 72be96c

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

sql/max_flow/_maxflow.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ CREATE OR REPLACE FUNCTION _pgr_maxflow(
5252

5353
-- COMMENTS
5454

55-
COMMENT ON FUNCTION _pgr_maxflow(TEXT, ANYARRAY, ANYARRAY, INTEGER, BOOLEAN)
55+
COMMENT ON FUNCTION _pgr_maxflow(TEXT, ANYARRAY, ANYARRAY, INTEGER, BOOLEAN)
5656
IS 'pgRouting internal function';
5757

sql/max_flow/edgeDisjointPaths.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,4 @@ IS 'pgr_edgeDisjointPaths(Many to Many)
203203
- directed := true
204204
- Documentation:
205205
- ${PGROUTING_DOC_LINK}/pgr_edgeDisjointPaths.html
206-
';
206+
';

sql/max_flow/maxCardinalityMatch.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ ROWS 1000;
6464
-- COMMENTS
6565

6666

67-
COMMENT ON FUNCTION _pgr_maxCardinalityMatch(TEXT, BOOLEAN)
67+
COMMENT ON FUNCTION _pgr_maxCardinalityMatch(TEXT, BOOLEAN)
6868
IS 'pgRouting internal function';
6969

7070

@@ -75,6 +75,6 @@ IS 'pgr_maxCardinalityMatch
7575
- Optional Parameters:
7676
- directed := true
7777
- Documentation:
78-
- ${PGROUTING_DOC_LINK}/pgr_boykovKolmogorov.html
78+
- ${PGROUTING_DOC_LINK}/pgr_maxCardinalityMatch.html
7979
';
8080

sql/max_flow/maxFlow.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ IS 'pgr_maxFlow(One to One)
9292
- from vertex
9393
- to vertex
9494
- Documentation:
95-
- ${PGROUTING_DOC_LINK}/pgr_pushRelabel.html
95+
- ${PGROUTING_DOC_LINK}/pgr_maxFlow.html
9696
';
9797

9898
COMMENT ON FUNCTION pgr_maxFlow(TEXT, BIGINT, ANYARRAY)
@@ -103,7 +103,7 @@ IS 'pgr_maxFlow(One to Many)
103103
- from vertex
104104
- to ARRAY[vertices identifiers]
105105
- Documentation:
106-
- ${PGROUTING_DOC_LINK}/pgr_pushRelabel.html
106+
- ${PGROUTING_DOC_LINK}/pgr_maxFlow.html
107107
';
108108

109109
COMMENT ON FUNCTION pgr_maxFlow(TEXT, ANYARRAY, BIGINT)
@@ -114,7 +114,7 @@ IS 'pgr_maxFlow(Many to One)
114114
- from ARRAY[vertices identifiers]
115115
- to vertex
116116
- Documentation:
117-
- ${PGROUTING_DOC_LINK}/pgr_pushRelabel.html
117+
- ${PGROUTING_DOC_LINK}/pgr_maxFlow.html
118118
';
119119

120120
COMMENT ON FUNCTION pgr_maxFlow(TEXT, ANYARRAY, ANYARRAY)
@@ -125,5 +125,5 @@ IS 'pgr_maxFlow(Many to Many)
125125
- from ARRAY[vertices identifiers]
126126
- to ARRAY[vertices identifiers]
127127
- Documentation:
128-
- ${PGROUTING_DOC_LINK}/pgr_pushRelabel.html
128+
- ${PGROUTING_DOC_LINK}/pgr_maxFlow.html
129129
';

sql/max_flow/pushRelabel.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,4 @@ IS 'pgr_pushRelabel(Many to Many)
157157
- To ARRAY[vertices identifiers]
158158
- Documentation:
159159
- ${PGROUTING_DOC_LINK}/pgr_pushRelabel.html
160-
';
160+
';

0 commit comments

Comments
 (0)