[doc] fix misleading (=wrong) quote usage

This commit is contained in:
Tobias Witek 2020-06-19 19:50:58 +02:00
parent a1d2e1d8f9
commit 381869ef65

View file

@ -29,8 +29,8 @@ Coding guidelines
Im pretty open to whatever style you use, but if its 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 <https://github.com/psf/black>`_.