fix bad documentation on remove_duplicates.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@690 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc 2002-11-18 17:25:22 +00:00
parent f53fdc54cb
commit 212c64f782
2 changed files with 5 additions and 5 deletions

View File

@ -7029,10 +7029,10 @@ can be used to insert @var{Elem} after the Nth element of @var{Rest}.
@cnindex permutation/2
True when @var{List} and @var{Perm} are permutations of each other.
@item remove_dups(+@var{List}, ?@var{Pruned})
@findex remove_dups/2
@syindex remove_dups/2
@cnindex remove_dups/2
@item remove_duplicates(+@var{List}, ?@var{Pruned})
@findex remove_duplicates/2
@syindex remove_duplicates/2
@cnindex remove_duplicates/2
Removes duplicated elements from @var{List}. Beware: if the @var{List} has
non-ground elements, the result may surprise you.

View File

@ -219,7 +219,7 @@ prefix([], _).
prefix([Elem | Rest_of_part], [Elem | Rest_of_whole]) :-
prefix(Rest_of_part, Rest_of_whole).
% remove_dups(List, Pruned)
% remove_duplicates(List, Pruned)
% removes duplicated elements from List. Beware: if the List has
% non-ground elements, the result may surprise you.