Update of /cvsroot/nice/Nice/debian
In directory sc8-pr-cvs1:/tmp/cvs-serv18831/debian
Modified Files:
changelog
Log Message:
Fixed grammar.
Index: changelog
===================================================================
RCS file: /cvsroot/nice/Nice/debian/changelog,v
retrieving revision 1.205
retrieving revision 1.206
diff -C2 -d -r1.205 -r1.206
*** changelog 31 Aug 2003 12:18:55 -0000 1.205
--- changelog 31 Aug 2003 14:32:26 -0000 1.206
***************
*** 18,24 ****
from a to b(inclusive) where b >= a. Example usage:
for (i : 1..10) println(i);
! * In local variable declarations like 'var x = exp' is the type of x infered
! to int when 'exp' is of type byte or short. This will avoid unexpected
! behaviour some cases.
* Bugfixes (incrementation of byte local variables, require a default value
for global variables, ...)
--- 18,24 ----
from a to b(inclusive) where b >= a. Example usage:
for (i : 1..10) println(i);
! * In local variable declarations like 'var x = exp', the inferred type
! for x is int when 'exp' is of type byte or short. This will avoid
! unexpected behaviour in some cases.
* Bugfixes (incrementation of byte local variables, require a default value
for global variables, ...)
|