tests/cpydiff: Fix markup where "`" (xref) was used instead of "``" (code).

pull/3468/head
Paul Sokolovsky 2017-12-03 15:32:09 +02:00
rodzic 4fee35a32c
commit 3c483842db
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
categories: Modules,builtins
description: Second argument to next() is not implemented
cause: MicroPython is optimised for code space.
workaround: Instead of `val = next(it, deflt)` use::
workaround: Instead of ``val = next(it, deflt)`` use::
try:
val = next(it)

Wyświetl plik

@ -2,6 +2,6 @@
categories: Types,str
description: str.ljust() and str.rjust() not implemented
cause: MicroPython is highly optimized for memory usage. Easy workarounds available.
workaround: Instead of `s.ljust(10)` use `"%-10s" % s`, instead of `s.rjust(10)` use `"% 10s" % s`. Alternatively, `"{:<10}".format(s)` or `"{:>10}".format(s)`.
workaround: Instead of ``s.ljust(10)`` use ``"%-10s" % s``, instead of ``s.rjust(10)`` use ``"% 10s" % s``. Alternatively, ``"{:<10}".format(s)`` or ``"{:>10}".format(s)``.
"""
print('abc'.ljust(10))