From c938b89cfef827201cf2d7d79f496fac4da45191 Mon Sep 17 00:00:00 2001 From: Shaun Oakenfull Date: Wed, 6 Oct 2021 08:52:09 +1000 Subject: [PATCH] triple quotes [Documentation] add triple quotes for docstring --- docs/source/First-Steps-Coding.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/First-Steps-Coding.md b/docs/source/First-Steps-Coding.md index fa54b4484d..6e8aac4ce1 100644 --- a/docs/source/First-Steps-Coding.md +++ b/docs/source/First-Steps-Coding.md @@ -182,7 +182,7 @@ the bottom of this file: help_category = "General" def func(self): - "implements the actual functionality" + """implements the actual functionality""" str, agi, mag = self.caller.get_abilities() string = "STR: %s, AGI: %s, MAG: %s" % (str, agi, mag) @@ -242,7 +242,7 @@ functionality. Here is an example of how the file could look: assume it looks like a stone in this example. """ def at_object_creation(self): - "Called when object is first created" + """Called when object is first created""" self.db.wise_texts = \ ["Stones have feelings too.", "To live like a stone is to not have lived at all.",