From 66b408d6e848a1e566f1b17787298be923b8a783 Mon Sep 17 00:00:00 2001 From: Gustavo Moreira Date: Tue, 2 Jan 2024 11:37:10 -0300 Subject: [PATCH] Fix minor docstring typos --- volatility3/framework/plugins/linux/kmsg.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/volatility3/framework/plugins/linux/kmsg.py b/volatility3/framework/plugins/linux/kmsg.py index 919d9145b0..d1f17bf943 100644 --- a/volatility3/framework/plugins/linux/kmsg.py +++ b/volatility3/framework/plugins/linux/kmsg.py @@ -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. """ @@ -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: