Skip to content

Commit

Permalink
doc spelling fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Oct 18, 2023
1 parent 7023663 commit 9240ca3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions spinnman/model/router_diagnostics.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def __init__(self, control_register, error_status, register_values):

self._register_values = register_values

# pylint: disable=wrong-spelling-in-docstring
@property
def mon(self):
"""
Expand Down
6 changes: 3 additions & 3 deletions spinnman/processes/get_machine_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def _fill_machine(self, machine):

def _process_ignore_links(self, machine):
"""
Processes the collection of ignore links to remove then from chipinfo.
Processes the collection of ignore links to remove then from chip info.
Converts any local (x, y, IP address) to global (x, y)
Expand All @@ -303,7 +303,7 @@ def _process_ignore_links(self, machine):
Logs all actions except for ignores with unused IP addresses
:param ~spinn_machine.Machine machine:
An empty machine to handle wrap-arounds
An empty machine to handle wrap-around
"""
for ignore in IgnoreLink.parse_string(
get_config_str_or_none("Machine", "down_links")):
Expand Down Expand Up @@ -351,7 +351,7 @@ def _preprocess_ignore_cores(self, machine):
Core numbers <= 0 are assumed to be 0 - physical_id
:param ~spinn_machine.Machine machine:
An empty machine to handle wrap-arounds
An empty machine to handle wrap-around
"""
# Convert by ip to global
for ignore in IgnoreCore.parse_string(
Expand Down
2 changes: 1 addition & 1 deletion spinnman/transceiver/base_transceiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@

class BaseTransceiver(ExtendableTransceiver, metaclass=AbstractBase):
"""
A base for all the code shared by all Version of the Transciever.
A base for all the code shared by all Version of the Transceiver.
"""
__slots__ = [
Expand Down
2 changes: 1 addition & 1 deletion spinnman/transceiver/virtual5Transceiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

class Virtual5Transceiver(Version5Transceiver):
"""
Overwirtes the standard Version 5 Transceiver
Overwrites the standard Version 5 Transceiver
to intercept the sending of messages.
This is just enough different to pass know tests.
Expand Down

0 comments on commit 9240ca3

Please sign in to comment.