From fb93c1f9f6932a7f49fad1ae36175d446b980b33 Mon Sep 17 00:00:00 2001 From: Patrick Creighton Date: Thu, 16 Feb 2023 09:40:32 -0800 Subject: [PATCH] Fix google.mustache Returns and Yields format --- src/docstring/templates/google.mustache | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/docstring/templates/google.mustache b/src/docstring/templates/google.mustache index 951e979..77d16ac 100644 --- a/src/docstring/templates/google.mustache +++ b/src/docstring/templates/google.mustache @@ -23,13 +23,13 @@ Raises: Returns: {{#returns}} - {{typePlaceholder}}: {{descriptionPlaceholder}} + A[n] {{typePlaceholder}} {{descriptionPlaceholder}} {{/returns}} {{/returnsExist}} {{#yieldsExist}} Yields: {{#yields}} - {{typePlaceholder}}: {{descriptionPlaceholder}} + A[n] {{typePlaceholder}} {{descriptionPlaceholder}} {{/yields}} {{/yieldsExist}}