From 7f41e5a649629a886b3fcacdfed0697d5dfe98a3 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 7 Apr 2024 21:51:52 +0200 Subject: [PATCH] Fix typo in code structure and utils tutorial. Resolve #3474 --- CHANGELOG.md | 1 + .../Beginner-Tutorial/Part3/Beginner-Tutorial-Utilities.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 27c717504c..25b114905a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ standard exits are displayed in a room (chiizujin) - [Fix][pull3495]: Fix rate in Trait contribs not updating after reload (jaborsh) - [Fix][pull3491]: Fix traceback in EvEditor when searching with malformed regex (chiizujin) +- [Docs]: Doc fixes (Griatch, chiizujin) [pull3470]: https://github.com/evennia/evennia/pull/3470 [pull3495]: https://github.com/evennia/evennia/pull/3495 diff --git a/docs/source/Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Utilities.md b/docs/source/Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Utilities.md index effd4bce3d..b715cfb559 100644 --- a/docs/source/Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Utilities.md +++ b/docs/source/Howtos/Beginner-Tutorial/Part3/Beginner-Tutorial-Utilities.md @@ -135,7 +135,7 @@ ABILITY_REVERSE_MAP = { Above, the `Ability` class holds some basic properties of a character sheet. -The `ABILITY_REVERSE_MAP` is a convenient map to go the other way &mdas; if in some command we were to enter the string 'cha', we could use this mapping to directly convert your input to the correct `Ability`. For example: +The `ABILITY_REVERSE_MAP` is a convenient map to go the other way — if in some command we were to enter the string 'cha', we could use this mapping to directly convert your input to the correct `Ability`. For example: ability = ABILITY_REVERSE_MAP.get(your_input)