diff --git a/Ghidra/Features/PyGhidra/src/main/py/README.md b/Ghidra/Features/PyGhidra/src/main/py/README.md index 4d26287c2d..d39b8840e2 100644 --- a/Ghidra/Features/PyGhidra/src/main/py/README.md +++ b/Ghidra/Features/PyGhidra/src/main/py/README.md @@ -55,7 +55,7 @@ def start(verbose=False, *, install_dir: Path = None) -> "PyGhidraLauncher": :param verbose: Enable verbose output during JVM startup (Defaults to False) :param install_dir: The path to the Ghidra installation directory. (Defaults to the GHIDRA_INSTALL_DIR environment variable) - :return: The PhyidraLauncher used to start the JVM + :return: The PyGhidraLauncher used to start the JVM """ ``` diff --git a/Ghidra/Features/PyGhidra/src/main/py/src/pyghidra/core.py b/Ghidra/Features/PyGhidra/src/main/py/src/pyghidra/core.py index a6c208a52d..c971e72211 100644 --- a/Ghidra/Features/PyGhidra/src/main/py/src/pyghidra/core.py +++ b/Ghidra/Features/PyGhidra/src/main/py/src/pyghidra/core.py @@ -34,7 +34,7 @@ def start(verbose=False, *, install_dir: Path = None) -> "PyGhidraLauncher": :param verbose: Enable verbose output during JVM startup (Defaults to False) :param install_dir: The path to the Ghidra installation directory. (Defaults to the GHIDRA_INSTALL_DIR environment variable) - :return: The PhyidraLauncher used to start the JVM + :return: The PyGhidraLauncher used to start the JVM """ from pyghidra.launcher import HeadlessPyGhidraLauncher launcher = HeadlessPyGhidraLauncher(verbose=verbose, install_dir=install_dir)