From 927a4b45cb03cda4f83639e3ed99657fa7256349 Mon Sep 17 00:00:00 2001 From: Ryan Culpepper Date: Sat, 29 Aug 2009 22:59:33 +0000 Subject: [PATCH] fixed typo, added line breaks svn: r15829 --- collects/scribblings/reference/data.scrbl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/collects/scribblings/reference/data.scrbl b/collects/scribblings/reference/data.scrbl index 8a65a01a79..ca21e315aa 100644 --- a/collects/scribblings/reference/data.scrbl +++ b/collects/scribblings/reference/data.scrbl @@ -94,7 +94,8 @@ used as an ephemeron key (see @secref["ephemerons"]). @examples[(string->uninterned-symbol "Apple") (eq? 'a (string->uninterned-symbol "a")) - (eq? (string->uninterned-symbol "a") (string->uninterned-symbol "a"))]} + (eq? (string->uninterned-symbol "a") + (string->uninterned-symbol "a"))]} @defproc[(string->unreadable-symbol [str string?]) symbol?]{Like @@ -103,9 +104,10 @@ used as an ephemeron key (see @secref["ephemerons"]). twice with equivalent @scheme[str]s returns the same symbol, but @scheme[read] never produces the symbol.} -@examples[(string->unreadble-symbol "Apple") +@examples[(string->unreadable-symbol "Apple") (eq? 'a (string->unreadable-symbol "a")) - (eq? (string->unreadable-symbol "a") (string->unreadable-symbol "a"))]} + (eq? (string->unreadable-symbol "a") + (string->unreadable-symbol "a"))]} @defproc[(gensym [base (or/c string? symbol?) "g"]) symbol?]{Returns a