Skip to content

Commit b9fb7a1

Browse files
committed
Collapse warnings of proposed and expermiental
- fix some spelling mistakes (cherry picked from commit 99ba589)
1 parent 588391f commit b9fb7a1

19 files changed

+40
-70
lines changed

doc/categories/DFS-category.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ Traversal using Depth First Search.
2424
.. official-end
2525
2626
27-
.. rubric:: Proposed
28-
2927
.. include:: proposed.rst
3028
:start-after: warning-begin
3129
:end-before: end-warning

doc/categories/KSP-category.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ K shortest paths - Category
2020

2121
.. official-end
2222
23-
.. rubric:: Proposed
24-
2523
.. include:: proposed.rst
2624
:start-after: warning-begin
2725
:end-before: end-warning

doc/categories/cost-category.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,6 @@ Cost - Category
2626

2727
.. official-end
2828
29-
.. rubric:: Proposed
30-
3129
.. include:: proposed.rst
3230
:start-after: warning-begin
3331
:end-before: end-warning

doc/categories/costMatrix-category.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ Cost Matrix - Category
2424
.. official-end
2525
2626
27-
.. rubric:: proposed
28-
2927
.. include:: proposed.rst
3028
:start-after: warning-begin
3129
:end-before: end-warning

doc/categories/drivingDistance-category.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,12 @@ Driving Distance - Category
1919
* :doc:`pgr_drivingDistance` - Driving Distance based on Dijkstra's algorithm
2020
* :doc:`pgr_primDD` - Driving Distance based on Prim's algorithm
2121
* :doc:`pgr_kruskalDD` - Driving Distance based on Kruskal's algorithm
22-
* Post pocessing
22+
* Post processing
2323

2424
* :doc:`pgr_alphaShape` - Alpha shape computation
2525

2626
.. official-end
2727
28-
.. rubric:: Proposed
29-
3028
.. include:: proposed.rst
3129
:start-after: warning-begin
3230
:end-before: end-warning

doc/categories/via-category.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
Via - Category
1515
===============================================================================
1616

17-
.. rubric:: proposed
18-
1917
.. include:: proposed.rst
2018
:start-after: warning-begin
2119
:end-before: end-warning
@@ -37,7 +35,7 @@ This category intends to solve the general problem:
3735
Given a graph and a list of vertices, find the shortest path between
3836
:math:`vertex_i` and :math:`vertex_{i+1}` for all vertices
3937

40-
In other words, find a continuos route that visits all the vertices in the order
38+
In other words, find a continuous route that visits all the vertices in the order
4139
given.
4240

4341
:path: represents a section of a **route**.

doc/coloring/coloring-family.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@
1414
Coloring - Family of functions
1515
===============================================================================
1616

17-
.. rubric:: Proposed
18-
1917
.. include:: proposed.rst
2018
:start-after: warning-begin
2119
:end-before: end-warning
@@ -27,8 +25,6 @@ Coloring - Family of functions
2725

2826
.. proposed-end
2927
30-
.. rubric:: Experimental
31-
3228
.. include:: experimental.rst
3329
:start-after: warning-begin
3430
:end-before: end-warning

doc/components/components-family.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ Components - Family of functions
2727

2828
.. official-end
2929
30-
.. rubric:: Experimental
31-
3230
.. include:: experimental.rst
3331
:start-after: warning-begin
3432
:end-before: end-warning

doc/conf.py.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ extensions = [
5454
'sphinx.ext.mathjax',
5555
'sphinx.ext.graphviz',
5656
'sphinx.ext.autosectionlabel',
57+
'sphinx_collapse',
5758
]
5859
autosectionlabel_prefix_document = True
5960

doc/dijkstra/dijkstra-family.rst

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,14 @@ Dijkstra - Family of functions
2626

2727
.. official-end
2828
29-
.. rubric:: Proposed
30-
3129
.. include:: proposed.rst
3230
:start-after: warning-begin
3331
:end-before: end-warning
3432

3533

3634
.. proposed-start
3735
38-
* :doc:`pgr_dijkstraVia` - Get a route of a seuence of vertices.
36+
* :doc:`pgr_dijkstraVia` - Get a route of a sequence of vertices.
3937
* :doc:`pgr_dijkstraNear` - Get the route to the nearest vertex.
4038
* :doc:`pgr_dijkstraNearCost` - Get the cost to the nearest vertex.
4139

@@ -192,7 +190,7 @@ The graphs are defined as follows:
192190

193191
.. rubric:: Directed graph
194192

195-
The weighted directed graph, :math:`G_d(V,E)`, is definied by:
193+
The weighted directed graph, :math:`G_d(V,E)`, is defined by:
196194

197195
* the set of vertices :math:`V`
198196

@@ -211,7 +209,7 @@ The weighted directed graph, :math:`G_d(V,E)`, is definied by:
211209

212210
.. rubric:: Undirected graph
213211

214-
The weighted undirected graph, :math:`G_u(V,E)`, is definied by:
212+
The weighted undirected graph, :math:`G_u(V,E)`, is defined by:
215213

216214
* the set of vertices :math:`V`
217215

0 commit comments

Comments
 (0)