From d6a54fa026970a05611715830c40d7950461231d Mon Sep 17 00:00:00 2001 From: TizzySaurus <47674925+TizzySaurus@users.noreply.github.com> Date: Wed, 20 Nov 2019 20:53:05 +0000 Subject: [PATCH 1/3] Added missing period at end of dictcomps tag. --- tags/dictcomps.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/dictcomps.md b/tags/dictcomps.md index 11867d7..a2ae673 100644 --- a/tags/dictcomps.md +++ b/tags/dictcomps.md @@ -17,4 +17,4 @@ They are also very useful for inverting the key value pairs of a dictionary that Also like list comprehensions, you can add a conditional to it in order to filter out items you don't want. -For more information and examples, check [PEP 274](https://www.python.org/dev/peps/pep-0274/) +For more information and examples, check [PEP 274](https://www.python.org/dev/peps/pep-0274/). From 4d946a9e163adced4edad0f0ab26cadd3c7272d0 Mon Sep 17 00:00:00 2001 From: TizzySaurus <47674925+TizzySaurus@users.noreply.github.com> Date: Wed, 20 Nov 2019 21:08:02 +0000 Subject: [PATCH 2/3] Fix iOS issue with Monty Python sketch link. --- tags/foo.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tags/foo.md b/tags/foo.md index a0a8cdd..c9988f3 100644 --- a/tags/foo.md +++ b/tags/foo.md @@ -7,4 +7,5 @@ Python has its own metasyntactic variables, namely `spam`, and `eggs`. This is a More information: • [History of foobar](https://en.wikipedia.org/wiki/Foobar) -• [Monty Python sketch](https://en.wikipedia.org/wiki/Spam_%28Monty_Python%29) +• [Monty Python sketch](https://en.wikipedia.org/wiki/Spam_(Monty_Python)) + From 97fa012e138f0d71d5ac38236b50fc7a10944487 Mon Sep 17 00:00:00 2001 From: TizzySaurus <47674925+TizzySaurus@users.noreply.github.com> Date: Wed, 20 Nov 2019 21:11:40 +0000 Subject: [PATCH 3/3] Added missing period in param-arg tag. --- tags/param-arg.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tags/param-arg.md b/tags/param-arg.md index 12b2a2e..3ed8e97 100644 --- a/tags/param-arg.md +++ b/tags/param-arg.md @@ -9,4 +9,4 @@ return n*n print(square(5)) # 5 is the argument ``` -Note that `5` is the argument passed to `square`, but `square(5)` in its entirety is the argument passed to `print` +Note that `5` is the argument passed to `square`, but `square(5)` in its entirety is the argument passed to `print`.