Fix U+2019 (RIGHT SINGLE QUOTATION MARK) used instead of "'" in Python code. (#237)

This commit is contained in:
Serhiy Storchaka 2017-04-02 00:05:24 +03:00 committed by GitHub
parent d675175520
commit 7d932d9588
1 changed files with 1 additions and 1 deletions

View File

@ -278,7 +278,7 @@ As a matter of convenience (and convention), instance variables can be
annotated in ``__init__`` or other methods, rather than in the class::
from typing import Generic, TypeVar
T = TypeVar(T)
T = TypeVar('T')
class Box(Generic[T]):
def __init__(self, content):