QuerySignal.st
changeset 15679 1b07a85590a2
parent 15238 5aa8f2cdad24
child 18091 abbcac10730e
child 22064 19fd11c9bf7f
--- a/QuerySignal.st	Thu Aug 22 14:53:49 2013 +0200
+++ b/QuerySignal.st	Thu Aug 22 15:01:24 2013 +0200
@@ -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 $'
 ! !