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

@@ -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.