From f7928d5bc8b878bcf28899c4a2f7402688997066 Mon Sep 17 00:00:00 2001 From: Emil Enchev <43370348+EmilEnchev@users.noreply.github.com> Date: Tue, 18 Jun 2019 12:32:37 +0300 Subject: [PATCH] :-) Can someone explain to me, when I make changes - to do or not to do pull requests?! I'm totally new here and I don't understand yet the Github's mechanic. If I only propose file changes is this enough? --- docs/standard-library/algorithm-functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/standard-library/algorithm-functions.md b/docs/standard-library/algorithm-functions.md index c7ca277946..b6b07c12de 100644 --- a/docs/standard-library/algorithm-functions.md +++ b/docs/standard-library/algorithm-functions.md @@ -203,7 +203,7 @@ int main() ``` ```Output -L = ( 50 40 10 20 20 ) +li = ( 50 40 10 20 20 ) All the elements are even numbers. ``` @@ -270,7 +270,7 @@ int main() ``` ```Output -L = ( 51 41 11 21 20 ) +li = ( 51 41 11 21 20 ) There's an even element in li. ```