From f79949dce302c571f937f253f35ebf503def2789 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Tue, 5 Feb 2013 09:05:33 -0600 Subject: [PATCH] Rackety original commit: 014abe64c0ab76977bd69693dc8d1e3fb6a9a1c5 --- collects/parser-tools/examples/read.rkt | 4 ++-- collects/parser-tools/parser-tools.scrbl | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/parser-tools/examples/read.rkt b/collects/parser-tools/examples/read.rkt index 842eff7..2dc9475 100644 --- a/collects/parser-tools/examples/read.rkt +++ b/collects/parser-tools/examples/read.rkt @@ -1,4 +1,4 @@ -;; This implements the equivalent of mzscheme's read-syntax for R5RS scheme. +;; This implements the equivalent of racket's read-syntax for R5RS scheme. ;; It has not been thoroughly tested. Also it will read an entire file into a ;; list of syntax objects, instead of returning one syntax object at a time @@ -59,7 +59,7 @@ [comment (:: #\; (:* (:~ #\newline)) #\newline)] - ;; See ${PLTHOME}/collects/syntax-color/scheme-lexer.rkt for an example of + ;; See ${PLTHOME}/collects/syntax-color/racket-lexer.rkt for an example of ;; using regexp macros to avoid the cut and paste. ; [numR (:: prefixR complexR)] ; [complexR (:or realR diff --git a/collects/parser-tools/parser-tools.scrbl b/collects/parser-tools/parser-tools.scrbl index bdf7fff..cb3a84f 100644 --- a/collects/parser-tools/parser-tools.scrbl +++ b/collects/parser-tools/parser-tools.scrbl @@ -54,7 +54,7 @@ style lexer and parser generators. @racket[re]'s against the buffer, and returns the result of executing the corresponding @racket[action-expr]. - @margin-note{The implementation of @racketmodname[syntax-color/scheme-lexer] + @margin-note{The implementation of @racketmodname[syntax-color/racket-lexer] contains a lexer for the @racketmodname[racket] language. In addition, files in the @filepath{examples} sub-directory of the @filepath{parser-tools} collection contain