diff --git a/shared/workspaces/src/workspaces/cli.py b/shared/workspaces/src/workspaces/cli.py
index c2bc855a2c1f0f2ae6434b007e58869df88ace6e..96b923f84262e5d5fc4ec8f2b15e7203894a7268 100644
--- a/shared/workspaces/src/workspaces/cli.py
+++ b/shared/workspaces/src/workspaces/cli.py
@@ -19,7 +19,7 @@ def submit_request(ns: ap.Namespace):
     :return:
     """
     # 1. Look up the REST API location in Capo
-    # 2. Send encode and send this request
+    # 2. Encode and submit this request
     # 3. Start listening for workflow events on this request
     # 4. Quit when the final message comes back
     print(ns)
@@ -44,6 +44,9 @@ def debug_workflow(ns: ap.Namespace):
     # ask the service to execute this request
     service.execute(ns.name, arg, ns.file)
 
+    # should hang out printing messages about this
+    # request, until we get the "complete" message
+
 
 def main():
     parser = ap.ArgumentParser("workflow")