From 4af321d1383c142421908fd32311678c67a58e23 Mon Sep 17 00:00:00 2001 From: SirBroccoli Date: Fri, 6 Jun 2025 00:01:29 +0200 Subject: [PATCH] Fix docstring and comment typo --- linPEAS/builder/src/linpeasBuilder.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linPEAS/builder/src/linpeasBuilder.py b/linPEAS/builder/src/linpeasBuilder.py index 8e8b24e..8306106 100644 --- a/linPEAS/builder/src/linpeasBuilder.py +++ b/linPEAS/builder/src/linpeasBuilder.py @@ -402,9 +402,9 @@ class LinpeasBuilder: def __replace_mark(self, mark: str, find_calls: list, join_char: str): - """Substitude the markup with the actual code""" - - self.linpeas_sh = self.linpeas_sh.replace(mark, join_char.join(find_calls)) #New line char is't needed + """Substitute the markup with the actual code""" + + self.linpeas_sh = self.linpeas_sh.replace(mark, join_char.join(find_calls)) #New line char isn't needed def write_linpeas(self, path): """Write on disk the final linpeas"""