Skip to content

Commit

Permalink
Fix some docs
Browse files Browse the repository at this point in the history
  • Loading branch information
kg583 committed Jan 13, 2024
1 parent ad2a916 commit a1db9cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tivars/flash.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class FlashDevices(Converter):
"""
Converter for the device field of a flash header
The device field contains at least one device type and type ID pair (xx, yy), stored as ``xxyy`.
The device field contains at least one device type and type ID pair (xx, yy), stored as ``xxyy``.
A flash header usually contains only has one pair in this field; the remainder of the field is null-padded.
The exception is a `TILicense`, which can hold licenses for multiple devices.
"""
Expand Down
4 changes: 2 additions & 2 deletions tivars/types/complex.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class RealPart(Converter):
@classmethod
def get(cls, data: bytes, *, instance=None) -> _T:
"""
Converts ``bytes`` -> `RealType`
Converts ``bytes`` -> `RealEntry`
:param data: The raw bytes to convert
:param instance: The instance containing the data section
Expand Down Expand Up @@ -60,7 +60,7 @@ class ImaginaryPart(Converter):
@classmethod
def get(cls, data: bytes, *, instance=None) -> _T:
"""
Converts ``bytes`` -> `RealType`
Converts ``bytes`` -> `RealEntry`
:param data: The raw bytes to convert
:param instance: The instance containing the data section
Expand Down

0 comments on commit a1db9cd

Please sign in to comment.