소스 검색

Fixed docstring.

Mike Naberezny 17 년 전
부모
커밋
97a6e19ffc
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/supervisor/rpcinterface.py

+ 2 - 2
src/supervisor/rpcinterface.py

@@ -165,7 +165,7 @@ class SupervisorNamespaceRPCInterface:
     def addProcessGroup(self, name):
         """ Update the config for a running process from config file.
 
-        @param string name         name of process to start
+        @param string name         name of process group to add
         @return boolean result     true if successful
         """
         self._update('addProcessGroup')
@@ -181,7 +181,7 @@ class SupervisorNamespaceRPCInterface:
     def removeProcessGroup(self, name):
         """ Remove a stopped process from the active configuration.
 
-        @param string name         name of process to remove
+        @param string name         name of process group to remove
         @return boolean result     Indicates wether the removal was successful
         """
         self._update('removeProcessGroup')