Skip to content

Commit

Permalink
Fix minor docstring typos
Browse files Browse the repository at this point in the history
  • Loading branch information
gcmoreira committed Jan 2, 2024
1 parent 8e58815 commit 66b408d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions volatility3/framework/plugins/linux/kmsg.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ def run(self) -> Iterator[Tuple[str, str, str, str, str]]:
Returns:
tuple:
facility [str]: The log facility: kern, user, etc. see FACILITIES
level [str]: The log level: info, debug, etc. see LEVELS
facility [str]: The log facility: kern, user, etc. See FACILITIES
level [str]: The log level: info, debug, etc. See LEVELS
timestamp [str]: The message timestamp. See nsec_to_sec_str()
caller [str]: The Caller ID: CPU(1) or Task(1234). See get_caller()
caller [str]: The caller ID: CPU(1) or Task(1234). See get_caller()
line [str]: The log message.
"""

Expand All @@ -131,7 +131,7 @@ def symtab_checks(cls, vmlinux: interfaces.context.ModuleInterface) -> bool:
run() method.
Returns:
bool: True if the kernel being analysed fulfill the class requirements.
bool: True if the kernel being analyzed fulfill the class requirements.
"""

def get_string(self, addr: int, length: int) -> str:
Expand Down

0 comments on commit 66b408d

Please sign in to comment.