emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] scratch/ediprolog 62ce0025b8 27/31: use compact string notation i


From: Stefan Monnier
Subject: [elpa] scratch/ediprolog 62ce0025b8 27/31: use compact string notation in sample queries
Date: Sun, 2 Oct 2022 17:01:39 -0400 (EDT)

branch: scratch/ediprolog
commit 62ce0025b8e44d0cbb5a782b5c18be72b2662163
Author: Markus Triska <triska@metalevel.at>
Commit: Markus Triska <triska@metalevel.at>

    use compact string notation in sample queries
---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 9aa9d45def..4f79fe4f6a 100644
--- a/README.md
+++ b/README.md
@@ -51,11 +51,11 @@ Prolog process, and you interact with the process in the 
current
 buffer as on a terminal. Queries start with "?-" or ":-", possibly
 preceded by "%" and whitespace. An example of a query is:
 
-    %?- member(X, [a,b,c]).
+    %?- member(X, "abc").
 
 If you press F10 when point is on that query, you get:
 
-    %?- member(X, [a,b,c]).
+    %?- member(X, "abc").
     %@    X = a
     %@ ;  X = b
     %@ ;  X = c



reply via email to

[Prev in Thread] Current Thread [Next in Thread]