]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Fix example with well formated code (add missing comma) (#720)
authorprogrammer04 <jakub.warczarek@gmail.com>
Wed, 20 Feb 2019 19:11:14 +0000 (20:11 +0100)
committerJelle Zijlstra <jelle.zijlstra@gmail.com>
Wed, 20 Feb 2019 19:11:14 +0000 (11:11 -0800)
README.md

index 2ce91bb26cb6854a0be40012666b3a3de2887459..b25f64fb8af79682cbda9bebf8b4b4da37e990ea 100644 (file)
--- a/README.md
+++ b/README.md
@@ -219,8 +219,8 @@ def very_important_function(
     template: str,
     *variables,
     file: os.PathLike,
-    engine: str, 
-    header: bool = True
+    engine: str,
+    header: bool = True,
     debug: bool = False,
 ):
     """Applies `variables` to the `template` and writes to `file`."""