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/). 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)) + 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`.