Skip to content

Commit

Permalink
remove whitespace in ddoc output of std/algorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
wilzbach committed May 25, 2016
1 parent 2f124de commit 614294c
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 12 deletions.
2 changes: 0 additions & 2 deletions std/algorithm/comparison.d
Expand Up @@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
It contains generic _comparison algorithms.
$(BOOKTABLE Cheat Sheet,
$(TR $(TH Function Name) $(TH Description))
$(T2 among,
Checks if a value is among a set of values, e.g.
$(D if (v.among(1, 2, 3)) // `v` is 1, 2 or 3))
Expand Down
2 changes: 0 additions & 2 deletions std/algorithm/iteration.d
Expand Up @@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
It contains generic _iteration algorithms.
$(BOOKTABLE Cheat Sheet,
$(TR $(TH Function Name) $(TH Description))
$(T2 cache,
Eagerly evaluates and caches another range's $(D front).)
$(T2 cacheBidirectional,
Expand Down
2 changes: 0 additions & 2 deletions std/algorithm/mutation.d
Expand Up @@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
It contains generic _mutation algorithms.
$(BOOKTABLE Cheat Sheet,
$(TR $(TH Function Name) $(TH Description))
$(T2 bringToFront,
If $(D a = [1, 2, 3]) and $(D b = [4, 5, 6, 7]),
$(D bringToFront(a, b)) leaves $(D a = [4, 5, 6]) and
Expand Down
2 changes: 0 additions & 2 deletions std/algorithm/searching.d
Expand Up @@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
It contains generic _searching algorithms.
$(BOOKTABLE Cheat Sheet,
$(TR $(TH Function Name) $(TH Description))
$(T2 all,
$(D all!"a > 0"([1, 2, 3, 4])) returns $(D true) because all elements
are positive)
Expand Down
2 changes: 0 additions & 2 deletions std/algorithm/setops.d
Expand Up @@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
It contains generic algorithms that implement set operations.
$(BOOKTABLE Cheat Sheet,
$(TR $(TH Function Name) $(TH Description))
$(T2 cartesianProduct,
Computes Cartesian product of two ranges.)
$(T2 largestPartialIntersection,
Expand Down
2 changes: 0 additions & 2 deletions std/algorithm/sorting.d
Expand Up @@ -4,9 +4,7 @@ This is a submodule of $(MREF std, algorithm).
It contains generic _sorting algorithms.
$(BOOKTABLE Cheat Sheet,
$(TR $(TH Function Name) $(TH Description))
$(T2 completeSort,
If $(D a = [10, 20, 30]) and $(D b = [40, 6, 15]), then
$(D completeSort(a, b)) leaves $(D a = [6, 10, 15]) and $(D b = [20,
Expand Down

0 comments on commit 614294c

Please sign in to comment.