We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b786614 commit 94fd553Copy full SHA for 94fd553
src/lib/macros.pl
@@ -71,7 +71,7 @@
71
:- use_module(macros_collection, [number/0, double/0]).
72
```
73
74
-It will enable only macros that were explictily imported, and warn if you use
+It will enable only macros that were explicitly imported, and warn if you use
75
others.
76
77
There is a little quirk though: if your macro has a numeric name, then it will
src/tests/macros.pl
@@ -98,7 +98,7 @@
98
_#t,
99
fep#_.
100
example(tbd) :-
101
- a(b#c)#d, % <- Should it expand b#c? if b/0 and a/1 are registered macros?
+ a(b#c)#d, % <- Should it expand b#c? If b/0 and a/1 are registered macros?
102
a#b#c#d. % <- In which order macros should be expanded?
103
104
% Should macros be expanded in clauses heads?
0 commit comments