Changeset 4091 for trunk/library

Show
Ignore:
Timestamp:
02/15/08 10:32:01 (11 months ago)
Author:
pmoura
Message:

Corrected typo in predicates documentation (integer expressions, not arithmetic expressions).

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/library/loopp.lgt

    r4090 r4091  
    1   
     1 
    22:- protocol(loopp). 
    33 
     
    2626    :- mode(forto(+integer, +integer, @callable), zero_or_one). 
    2727    :- info(forto/3, [ 
    28         comment is 'Counting from First to Last call Goal. For convenience and clarity, First and Last can be arithmetic expressions.', 
     28        comment is 'Counting from First to Last call Goal. For convenience and clarity, First and Last can be integer expressions.', 
    2929        argnames is ['First', 'Last', 'Goal']]). 
    3030 
     
    3333    :- mode(forto(-integer, +integer, +integer, @callable), zero_or_one). 
    3434    :- info(forto/4, [ 
    35         comment is 'Call Goal counting from First to Last and instantiating Count to each successive value. For convenience and clarity, First and Last can be arithmetic expressions.', 
     35        comment is 'Call Goal counting from First to Last and instantiating Count to each successive value. For convenience and clarity, First and Last can be integer expressions.', 
    3636        argnames is ['Count', 'First', 'Last', 'Goal']]). 
    3737 
     
    4040    :- mode(fordownto(+integer, +integer, @callable), zero_or_one). 
    4141    :- info(fordownto/3, [ 
    42         comment is 'Counting from First to Last call Goal. For convenience and clarity, First and Last can be arithmetic expressions.', 
     42        comment is 'Counting from First to Last call Goal. For convenience and clarity, First and Last can be integer expressions.', 
    4343        argnames is ['First', 'Last', 'Goal']]). 
    4444 
     
    4747    :- mode(fordownto(-integer, +integer, +integer, @callable), zero_or_one). 
    4848    :- info(fordownto/4, [ 
    49         comment is 'Call Goal counting from First to Last and instantiating Count to each successive value. For convenience and clarity, First and Last can be arithmetic expressions.', 
     49        comment is 'Call Goal counting from First to Last and instantiating Count to each successive value. For convenience and clarity, First and Last can be integer expressions.', 
    5050        argnames is ['Count', 'First', 'Last', 'Goal']]). 
    5151