From 7a06cacd45202ef70a55af2fa2ee8638b2415810 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Thu, 25 Nov 2010 23:58:33 -0800 Subject: [PATCH] help.tutorial: minor cleanup. --- basis/help/tutorial/tutorial.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/help/tutorial/tutorial.factor b/basis/help/tutorial/tutorial.factor index ee22782fdc..c4f332ed8e 100644 --- a/basis/help/tutorial/tutorial.factor +++ b/basis/help/tutorial/tutorial.factor @@ -24,7 +24,7 @@ $nl ARTICLE: "first-program-logic" "Writing some logic in your first program" "Your " { $snippet "palindrome.factor" } " file should look like the following after the previous section:" { $code - "! Copyright (C) 2009 " + "! Copyright (C) 2010 " "! See http://factorcode.org/license.txt for BSD license." "USING: ;" "IN: palindrome" @@ -127,7 +127,7 @@ $nl "Finally, pass the string and the quotation to the " { $link filter } " word:" { $code "filter" } "Now the stack should contain the following string:" -{ "\"AmanaplanacanalPanama\"" } +{ "\"AmanaplanacanalPanama\"" } ". " "This is almost what we want; we just need to convert the string to lower case now. This can be done by calling " { $link >lower } "; the " { $snippet ">" } " prefix is a naming convention for conversion operations, and should be read as “to”:" { $code ">lower" } "Finally, let's print the top of the stack and discard it:"