Skip to content

Commit

Permalink
Merge pull request #1319 from twisted/9874-mthuurne-missing_docstring…
Browse files Browse the repository at this point in the history
…_field_names

Add missing docstring field names

Author: mthuurne
Reviewer: rodrigc
Fixes: ticket:9874
  • Loading branch information
mthuurne committed Jun 28, 2020
2 parents fd50e9e + b1c3ef6 commit fc3d899
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/twisted/logger/_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Logger(object):
@type source: L{object}
@ivar source: The object which is emitting events via this logger
@type: L{ILogObserver}
@type observer: L{ILogObserver}
@ivar observer: The observer that this logger will send events to.
"""

Expand Down
6 changes: 3 additions & 3 deletions src/twisted/names/secondary.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,14 @@ class SecondaryAuthority(FileAuthority):
@ivar primary: The IP address of the server from which zone transfers will
be attempted.
@type primary: C{str}
@type primary: L{str}
@ivar _port: The port number of the server from which zone transfers will
be attempted.
@type: C{int}
@type _port: L{int}
@ivar domain: The domain for which this is the secondary authority.
@type: C{bytes}
@type domain: L{bytes}
@ivar _reactor: The reactor to use to perform the zone transfers, or
L{None} to use the global reactor.
Expand Down
Empty file.
2 changes: 1 addition & 1 deletion src/twisted/python/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
modinfo.name, modinfo.filePath.path))
@var theSystemPath: The very top of the Python object space.
@type: L{PythonPath}
@type theSystemPath: L{PythonPath}
"""


Expand Down

0 comments on commit fc3d899

Please sign in to comment.