From 3ad82975e106576d3b0cd5bc7f14979cea9f77a6 Mon Sep 17 00:00:00 2001 From: thamara Date: Mon, 2 Sep 2019 23:30:34 -0300 Subject: [PATCH] Fixing link to snippets in algorithm/copy* --- algorithm/copy.md | 2 +- algorithm/copy_backward.md | 2 +- algorithm/copy_if.md | 2 +- algorithm/copy_n.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/algorithm/copy.md b/algorithm/copy.md index 6b2cbaa1..5923a619 100644 --- a/algorithm/copy.md +++ b/algorithm/copy.md @@ -15,5 +15,5 @@ std::cout << value << " "; } ``` -**[See Sample code](snippets/vector/copy.cpp)** +**[See Sample code](snippets/algorithm/copy.cpp)** **[Run Code](https://rextester.com/DPG88459)** \ No newline at end of file diff --git a/algorithm/copy_backward.md b/algorithm/copy_backward.md index f44d5f2f..e1db56bb 100644 --- a/algorithm/copy_backward.md +++ b/algorithm/copy_backward.md @@ -17,5 +17,5 @@ Elements are copied in reverse order (last element is copied first), but the rel std::cout << value << " "; } ``` -**[See Sample code](snippets/vector/copy_backward.cpp)** +**[See Sample code](snippets/algorithm/copy_backward.cpp)** **[Run Code](https://rextester.com/INZK42877)** \ No newline at end of file diff --git a/algorithm/copy_if.md b/algorithm/copy_if.md index dbf352b0..f932cd41 100644 --- a/algorithm/copy_if.md +++ b/algorithm/copy_if.md @@ -19,5 +19,5 @@ std::cout << value << " "; } ``` -**[See Sample code](snippets/vector/copy_if.cpp)** +**[See Sample code](snippets/algorithm/copy_if.cpp)** **[Run Code](https://rextester.com/OMC23438)** \ No newline at end of file diff --git a/algorithm/copy_n.md b/algorithm/copy_n.md index dff74fb0..8161030c 100644 --- a/algorithm/copy_n.md +++ b/algorithm/copy_n.md @@ -15,5 +15,5 @@ std::cout << value << " "; } ``` -**[See Sample code](snippets/vector/copy_n.cpp)** +**[See Sample code](snippets/algorithm/copy_n.cpp)** **[Run Code](https://rextester.com/GXR34835)** \ No newline at end of file