nico 8 年之前
父节点
当前提交
da04bb273c
共有 1 个文件被更改,包括 2 次插入3 次删除
  1. 2 3
      core/OrderAnalyser.py

+ 2 - 3
core/OrderAnalyser.py

@@ -35,7 +35,7 @@ class OrderAnalyser:
         This method matches the incoming messages to the signals/order sentences provided in the Brain
         """
 
-        # create a dict of synapses that have benn launched
+        # create a dict of synapses that have been launched
         launched_synapses = self._get_matching_synapse_list(self.brain.synapses, self.order)
 
         if not launched_synapses:
@@ -56,7 +56,7 @@ class OrderAnalyser:
 
         :param all_synapses_list: the complete list of all synapses
         :param order_to_match: the order to match
-        :type order_to_check: str
+        :type order_to_match: str
         :return: the list of matching synapses
         """
         matching_synapses_list = list()
@@ -126,7 +126,6 @@ class OrderAnalyser:
         else:
             Utils.print_danger("A problem has been found in the Synapse.")
 
-
     @classmethod
     def _associate_order_params_to_values(cls, order, order_to_check):
         """