branch: externals/iterators
commit f39f78ab3b210bfc1e2205e02e7f5577f254f62a
Author: Paul Eggert <[email protected]>
Commit: Paul Eggert <[email protected]>

    Fix some quoting problems in doc strings
    
    Most of these are minor issues involving, e.g., quoting `like this'
    instead of 'like this'.  A few involve escaping ` and ' with a
    preceding \= when the characters should not be turned into curved single
    quotes.
---
 iterators.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/iterators.el b/iterators.el
index d9cb96b..b10e671 100644
--- a/iterators.el
+++ b/iterators.el
@@ -206,7 +206,7 @@ elements s_1, s_2, ... of the iterator returned by
 
 as long as i_n exists.
 
-Example: (iterator-scan #'* 1 (iterator-number-range 1))
+Example: (iterator-scan #\\='* 1 (iterator-number-range 1))
 returns an iterator of the factorials."
   (let ((res init))
     (iterator--cons

Reply via email to