Skip to content

Commit 615afe4

Browse files
authored
Use main URL for Wikipedia, not mobile URL (#377)
1 parent 9c8efd9 commit 615afe4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Experimental/ShortestPaths/ShortestPaths.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ shortest paths.
7878
See `ShortestPathAlgorithm` for more details on the algorithm specifications.
7979
8080
### Implementation Notes
81-
The elements of `distmx` may be of any type that has a [Total Ordering](https://en.m.wikipedia.org/wiki/Total_order)
81+
The elements of `distmx` may be of any type that has a [Total Ordering](https://en.wikipedia.org/wiki/Total_order)
8282
and valid comparator, `zero` and `typemax` functions. Concretely, this means that
8383
distance matrices containing complex numbers are invalid.
8484

src/Experimental/ShortestPaths/bfs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ using Graphs.Experimental.Traversals
44
struct BFS <: ShortestPathAlgorithm
55
66
The structure used to configure and specify that [`shortest_paths`](@ref)
7-
should use the [Breadth-First Search algorithm](https://en.m.wikipedia.org/wiki/Breadth-first_search).
7+
should use the [Breadth-First Search algorithm](https://en.wikipedia.org/wiki/Breadth-first_search).
88
99
An optional sorting algorithm may be specified (default = no sorting).
1010
Sorting helps maintain cache locality and will improve performance on

src/biconnectivity/bridge.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
bridges(g)
33
4-
Compute the [bridges](https://en.m.wikipedia.org/wiki/Bridge_(graph_theory))
4+
Compute the [bridges](https://en.wikipedia.org/wiki/Bridge_(graph_theory))
55
of a connected graph `g` and return an array containing all bridges, i.e edges
66
whose deletion increases the number of connected components of the graph.
77
# Examples

0 commit comments

Comments
 (0)