From 55ea0d02a7754951002d10eb133d3ecef97fe16a Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 1 Nov 2020 12:13:51 +0100 Subject: [PATCH] Update line number in doc ref. Resolves #2242. --- docs/source/Python-basic-tutorial-part-two.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/Python-basic-tutorial-part-two.md b/docs/source/Python-basic-tutorial-part-two.md index b1e0820a0d..7eebbd04d3 100644 --- a/docs/source/Python-basic-tutorial-part-two.md +++ b/docs/source/Python-basic-tutorial-part-two.md @@ -310,7 +310,7 @@ class DefaultCharacter(DefaultObject): This means that `DefaultCharacter` is in *itself* a child of something called `DefaultObject`! Let's see what this parent class provides. It's in the same module as `DefaultCharacter`, you just need to [scroll up near the -top](https://github.com/evennia/evennia/blob/master/evennia/objects/objects.py#L182): +top](https://github.com/evennia/evennia/blob/master/evennia/objects/objects.py#L193): ```python class DefaultObject(with_metaclass(TypeclassBase, ObjectDB)):