From b167e62bc7ba300a0303e2846edfc9a0631c135d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Santos=20Costa?= Date: Mon, 18 Nov 2013 12:56:00 +0000 Subject: [PATCH] fix typo --- pl/modules.yap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pl/modules.yap b/pl/modules.yap index b62f4bbba..72dc309fc 100644 --- a/pl/modules.yap +++ b/pl/modules.yap @@ -683,7 +683,7 @@ export_list(Module, List) :- '$simple_conversion'([], [], []). '$simple_conversion'([F/N|Exports], [F/N-F/N|Tab], [F/N|E]) :- '$simple_conversion'(Exports, Tab, E). -'$simple_conpversion'([F//N|Exports], [F/N2-F/N2|Tab], [F/N2|E]) :- +'$simple_conversion'([F//N|Exports], [F/N2-F/N2|Tab], [F/N2|E]) :- N2 is N+1, '$simple_conversion'(Exports, Tab, E). '$simple_conversion'([F/N as NF|Exports], [F/N-NF/N|Tab], [NF/N|E]) :-