From 381869ef65c7066b1ff4fc7a7932bcff769fe5b0 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Fri, 19 Jun 2020 19:50:58 +0200 Subject: [PATCH] [doc] fix misleading (=wrong) quote usage --- docs/development/module.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development/module.rst b/docs/development/module.rst index 26dfefa..1d6e716 100644 --- a/docs/development/module.rst +++ b/docs/development/module.rst @@ -29,8 +29,8 @@ Coding guidelines I’m pretty open to whatever style you use, but if it’s all the same to you (and yes, I know that the current codebase is only slowly adapting -to this): - Please favour single quotes for strings (except for -docstrings, which are always """) - For private methods/variables, +to this): - Please favour double quotes for strings. +For private methods/variables, please use a leading ``__`` (e.g. ``__output`` rather than ``_output``) For anything else, please run your code through `black `_.