diff --git a/docs/source/conf.py b/docs/source/conf.py index 3ca7882296a..3c277168a70 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -208,7 +208,7 @@ def patched_make_field(self, types, domain, items, **kw): # `kw` catches `env=None` needed for newer sphinx while maintaining # backwards compatibility when passed along further down! - # type: (List, unicode, Tuple) -> nodes.field + # type: (list, unicode, tuple) -> nodes.field def handle_item(fieldarg, content): par = nodes.paragraph() par += addnodes.literal_strong('', fieldarg) # Patch: this line added diff --git a/torchvision/models/inception.py b/torchvision/models/inception.py index e68afff5115..84fb62674e9 100644 --- a/torchvision/models/inception.py +++ b/torchvision/models/inception.py @@ -96,7 +96,7 @@ def forward(self, x): x = self.Mixed_5b(x) # N x 256 x 35 x 35 x = self.Mixed_5c(x) - # N x 288 x 35 x 35 + # N x 288 x 35 x 35 x = self.Mixed_5d(x) # N x 288 x 35 x 35 x = self.Mixed_6a(x)