Skip to content

Commit

Permalink
Fixing links to snippets in min/max/bound methods
Browse files Browse the repository at this point in the history
  • Loading branch information
thamara committed Sep 3, 2019
1 parent ec739b8 commit b31b3db
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion algorithm/lower_bound.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
std::cout << "The lower bound element is " << *lowerBoundIt << '\n';

```
**[See Sample code](snippets/vector/lower_bound.cpp)**
**[See Sample code](snippets/algorithm/lower_bound.cpp)**
**[Run Code](https://rextester.com/KFK22059)**
2 changes: 1 addition & 1 deletion algorithm/max.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
// prints 7
std::cout << smallest << " ";
```
**[See Sample code](snippets/vector/max.cpp)**
**[See Sample code](snippets/algorithm/max.cpp)**
**[Run Code](https://rextester.com/RCHUQA23545)**
2 changes: 1 addition & 1 deletion algorithm/max_element.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
std::cout << "The greatest element is " << *greatestIt << '\n';

```
**[See Sample code](snippets/vector/max_element.cpp)**
**[See Sample code](snippets/algorithm/max_element.cpp)**
**[Run Code](https://rextester.com/MYCU8700)**
2 changes: 1 addition & 1 deletion algorithm/min.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
// prints 3
std::cout << smallest << " ";
```
**[See Sample code](snippets/vector/min.cpp)**
**[See Sample code](snippets/algorithm/min.cpp)**
**[Run Code](https://rextester.com/RCHUQA23545)**
2 changes: 1 addition & 1 deletion algorithm/min_element.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
std::cout << "The smallest element is " << *smallestIt << '\n';

```
**[See Sample code](snippets/vector/min_element.cpp)**
**[See Sample code](snippets/algorithm/min_element.cpp)**
**[Run Code](https://rextester.com/ZVBA46979)**
2 changes: 1 addition & 1 deletion algorithm/minmax.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
" Max is " << minMax2.second << std::endl;

```
**[See Sample code](snippets/vector/minmax.cpp)**
**[See Sample code](snippets/algorithm/minmax.cpp)**
**[Run Code](https://rextester.com/AYBQP34022)**
2 changes: 1 addition & 1 deletion algorithm/minmax_element.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
" Max is " << *minMaxPair.second << std::endl;

```
**[See Sample code](snippets/vector/minmax_element.cpp)**
**[See Sample code](snippets/algorithm/minmax_element.cpp)**
**[Run Code](https://rextester.com/NSPL12489)**
2 changes: 1 addition & 1 deletion algorithm/upper_bound.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
std::cout << "The lower bound element is " << *upperBoundIt << '\n';

```
**[See Sample code](snippets/vector/upper_bound.cpp)**
**[See Sample code](snippets/algorithm/upper_bound.cpp)**
**[Run Code](https://rextester.com/DAN7877)**

0 comments on commit b31b3db

Please sign in to comment.