docstring updates

Signed-off-by: sweeneys <sweeneys@amazon.com>
This commit is contained in:
sweeneys
2021-09-28 14:53:58 -07:00
parent 321d7a664d
commit f6585a741c
2 changed files with 2 additions and 2 deletions
@@ -59,7 +59,7 @@ class _LinuxResourceManager(AbstractResourceLocator):
class LinuxWorkspaceManager(AbstractWorkspaceManager):
"""
A Mac host WorkspaceManager. Contains Mac overridden functions for the AbstractWorkspaceManager class.
A Linux host WorkspaceManager. Contains Mac overridden functions for the AbstractWorkspaceManager class.
Also creates a Mac host ResourceLocator for directory and build mappings.
"""
def __init__(
@@ -147,7 +147,7 @@ class LinuxLauncher(Launcher):
def check_returncode(self):
# type: () -> None
"""
Checks the returncode of the launcher if it exists. Raises a CrashError if the returncode is non-zero. Returns
Checks the return code of the launcher if it exists. Raises a CrashError if the returncode is non-zero. Returns
None otherwise. This function must be called after exiting the launcher properly and NOT using its provided
teardown(). Provided teardown() will always return a non-zero returncode and should not be checked.