Skip to content

Commit 94fd553

Browse files
committed
Fix typos
1 parent b786614 commit 94fd553

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib/macros.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
:- use_module(macros_collection, [number/0, double/0]).
7272
```
7373
74-
It will enable only macros that were explictily imported, and warn if you use
74+
It will enable only macros that were explicitly imported, and warn if you use
7575
others.
7676
7777
There is a little quirk though: if your macro has a numeric name, then it will

src/tests/macros.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
_#t,
9999
fep#_.
100100
example(tbd) :-
101-
a(b#c)#d, % <- Should it expand b#c? if b/0 and a/1 are registered macros?
101+
a(b#c)#d, % <- Should it expand b#c? If b/0 and a/1 are registered macros?
102102
a#b#c#d. % <- In which order macros should be expanded?
103103

104104
% Should macros be expanded in clauses heads?

0 commit comments

Comments
 (0)