EditTextView.st
changeset 5859 d824308630da
parent 5858 f281506fb025
child 5860 acc60507b977
--- a/EditTextView.st	Tue Sep 13 15:02:01 2016 +0200
+++ b/EditTextView.st	Tue Sep 13 15:11:50 2016 +0200
@@ -1118,7 +1118,7 @@
      but which cannot afford to generate the whole text in advance
      (eg: who wants to disassemble gigabytes?).
      If set, this hook is called whenever the cursor is about to be moved below the 
-     last line, getting the wanted lineNr (i.e > contents size) as argument.
+     last line, getting the new lineNr (i.e > contents size) as argument.
      It may generate more text (by setting my contents) and return a new cursor line
      number, into which the cursor should be moved 
      (eg. if 10 additional lines are generated, it may want to return oldSize+1, 
@@ -1135,7 +1135,7 @@
      but which cannot afford to generate the whole text in advance
      (eg: who wants to disassemble gigabytes?).
      If set, this hook is called whenever the cursor is about to be moved above the 
-     top, getting the lineNr (i.e <= 1) as argument.
+     top, getting the new lineNr (i.e < 1) as argument.
      It may generate more text (by setting my contents) and return a new cursor line
      number, into which the cursor should be moved 
      (eg. if 10 additional lines are generated, it may want to return 10, to make the