From 61db9850c1bc90fb2225731927a14bdbf79e8bbb Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 28 Jan 2008 19:40:52 +0000 Subject: [PATCH] scribbled dynext (from Will Farr) svn: r8450 original commit: 987b9e76814a873b9034162e44d15267c3bf6c9a --- collects/scribblings/scribble/how-to.scrbl | 4 ++-- collects/scribblings/scribble/style.scrbl | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/collects/scribblings/scribble/how-to.scrbl b/collects/scribblings/scribble/how-to.scrbl index cee2c9a9..2e66bd9e 100644 --- a/collects/scribblings/scribble/how-to.scrbl +++ b/collects/scribblings/scribble/how-to.scrbl @@ -283,11 +283,11 @@ manual: @(require scribble/manual (for-label scheme)) @(define ref-src - '(lib "scribblings/reference/reference.scrbl"))] + '(lib "scribblings/reference/reference.scrbl")) @title{My Library} - See also @italic{@secref[#:doc reference-src]{pairs}}. + See also @italic{@secref[#:doc ref-src]{pairs}}. EOS ] diff --git a/collects/scribblings/scribble/style.scrbl b/collects/scribblings/scribble/style.scrbl index 01d1c04d..388b406e 100644 --- a/collects/scribblings/scribble/style.scrbl +++ b/collects/scribblings/scribble/style.scrbl @@ -103,3 +103,7 @@ for quotation marks that are part of code. Do not use a citation reference (as created by @scheme[cite]) as a noun; use it as an annotation. + +Do not start a sentence with a Scheme variable name, since it is +normally lowercase. For example, use ``The @scheme[_thing] argument +is...'' instead of ``@scheme[_thing] is...''