QuerySignal.st
branchjv
changeset 18091 abbcac10730e
parent 18060 3708e12e9aa8
parent 15679 1b07a85590a2
--- a/QuerySignal.st	Fri Aug 23 17:31:58 2013 +0100
+++ b/QuerySignal.st	Wed Aug 28 10:47:51 2013 +0100
@@ -436,7 +436,7 @@
 !QuerySignal methodsFor:'raising'!
 
 query
-    "raise the query - return the handlers value, or the default
+    "raise the query - return the handler's value, or the default
      value, if there is no handler."
 
     ^ self raiseRequest
@@ -444,7 +444,7 @@
 
 queryWith:aParameter
     "raise the query passing a parameter 
-     - return the handlers value, or the default value, if there is no handler."
+     - return the handler's value, or the default value, if there is no handler."
 
     ^ self raiseRequestWith:aParameter
 !
@@ -462,7 +462,7 @@
 !
 
 raiseRequest
-    "raise the query - return the handlers value, or the default
+    "raise the query - return the handler's value, or the default
      value, if there is no handler.
      Invoking the handler is exactly the functionality of Signal>>raiseRequest,
      but we can do it faster here, by avoiding the creation of a full-blown
@@ -510,10 +510,10 @@
 !QuerySignal class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/QuerySignal.st,v 1.47 2013-05-13 13:47:28 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/QuerySignal.st,v 1.48 2013-08-22 13:01:24 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/QuerySignal.st,v 1.47 2013-05-13 13:47:28 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/QuerySignal.st,v 1.48 2013-08-22 13:01:24 cg Exp $'
 ! !