From 7190021972335d9571f3786d675a92bbe458f073 Mon Sep 17 00:00:00 2001 From: Matthew Butterick Date: Wed, 23 Dec 2020 16:03:23 -0800 Subject: [PATCH] more typoe --- describe/main.rkt | 2 +- describe/scribblings/describe.scrbl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/describe/main.rkt b/describe/main.rkt index 19ddbbe..9b27def 100644 --- a/describe/main.rkt +++ b/describe/main.rkt @@ -405,7 +405,7 @@ ;;; 201223 Racket CS update ;;; Racket CS does not support extflonums -;;; so we remove racket/extflonum from depednencies +;;; so we remove racket/extflonum from dependencies ;;; and make the extflonum functions into no-ops (define (extflonum? x) #false) (define (extfl< . xs) #false) diff --git a/describe/scribblings/describe.scrbl b/describe/scribblings/describe.scrbl index b173283..b5a2aea 100644 --- a/describe/scribblings/describe.scrbl +++ b/describe/scribblings/describe.scrbl @@ -14,7 +14,7 @@ This library provides functions to describe Racket objects. Currently, the following types of objects are described: -@margin-note{This is not the official version of Describe. It is the 1.5 version from PLaneT, retooled to use Racket's new package system, and with bigfloats disabled (because of incompatability with v.5.3) and extflonums disabled (because of incompatability with Racket CS). The canonical version of Describe is on the @link["http://planet.racket-lang.org/display.ss?package=describe.plt&owner=williams" "PLaneT server"]. — MB} +@margin-note{This is not the official version of Describe. It is the 1.5 version from PLaneT, retooled to use Racket's current package system, and with bigfloats disabled (because of incompatibility with v.5.3) and extflonums disabled (because of incompatibility with Racket CS). The canonical version of Describe is on the @link["http://planet.racket-lang.org/display.ss?package=describe.plt&owner=williams" "PLaneT server"]. — MB} @itemize{ @item{Booleans} @@ -80,7 +80,7 @@ Examples: @scheme[(integer->string (expt 10 150))] -> "at least 10^102" -@defproc[(float->string (x (or/c flonum? single-flonum? extflonum?))) string?]{ +@defproc[(float->string (x (or/c flonum? single-flonum?))) string?]{ Returns a string with the exact decimal value of the floating-point number @scheme[x]. This works for single precision, double precision, and extended precision values. Note that internally @scheme[x] is converted to an exact rational number as part of converting to a string.} Examples: