Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
hurufu committed Dec 18, 2024
1 parent b786614 commit 94fd553
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/macros.pl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
:- use_module(macros_collection, [number/0, double/0]).
```
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
others.
There is a little quirk though: if your macro has a numeric name, then it will
Expand Down
2 changes: 1 addition & 1 deletion src/tests/macros.pl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
_#t,
fep#_.
example(tbd) :-
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?
a#b#c#d. % <- In which order macros should be expanded?

% Should macros be expanded in clauses heads?
Expand Down

0 comments on commit 94fd553

Please sign in to comment.