summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-08-08 10:34:49 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-08-08 10:34:49 (GMT)
commit08d85ee78d8bc69cefa627c309c2de51a97bc2b2 (patch)
treea0c3e62835f660ce77b9459da42b3be666576c3c /Doc/library
parent7d1c5efed19cebc27bf7937a71d1a736192921a1 (diff)
downloadcpython-08d85ee78d8bc69cefa627c309c2de51a97bc2b2.zip
cpython-08d85ee78d8bc69cefa627c309c2de51a97bc2b2.tar.gz
cpython-08d85ee78d8bc69cefa627c309c2de51a97bc2b2.tar.bz2
Fix use of default reST role
Diffstat (limited to 'Doc/library')
-rw-r--r--Doc/library/typing.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index 29211c0..c982a7f 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -296,8 +296,8 @@ value of type on :class:`Any` and assign it to any variable::
s = a # OK
def foo(item: Any) -> int:
- # Typechecks; `item` could be any type,
- # and that type might have a `bar` method
+ # Typechecks; 'item' could be any type,
+ # and that type might have a 'bar' method
item.bar()
...
@@ -333,7 +333,7 @@ reject almost all operations on it, and assigning it to a variable (or using
it as a return value) of a more specialized type is a type error. For example::
def hash_a(item: object) -> int:
- # Fails; an object does not have a `magic` method.
+ # Fails; an object does not have a 'magic' method.
item.magic()
...