From 7a9591674c260415424adf46b25189fd2bafc286 Mon Sep 17 00:00:00 2001 From: Keita Haga Date: Thu, 23 Dec 2010 05:15:20 +0900 Subject: [PATCH] io.directories.search: fix a couple of examples --- basis/io/directories/search/search-docs.factor | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/io/directories/search/search-docs.factor b/basis/io/directories/search/search-docs.factor index 4f7e0ba212..de61aeaf0b 100644 --- a/basis/io/directories/search/search-docs.factor +++ b/basis/io/directories/search/search-docs.factor @@ -64,7 +64,7 @@ HELP: find-by-extension } { $description "Searches a directory for all files with the given extension. File extension and filenames are converted to lower-case and compared using the " { $link tail? } " word. The file extension should contain the period." } { $examples - { $unchecked-example + { $code "USING: io.directories.search ;" "\"/\" \".mp3\" find-by-extension" } @@ -77,7 +77,7 @@ HELP: find-by-extensions } { $description "Searches a directory for all files in the given list of extensions. File extensions and filenames are converted to lower-case and compared using the " { $link tail? } " word. File extensions should contain the period." } { $examples - { $unchecked-example + { $code "USING: io.directories.search ;" "\"/\" { \".jpg\" \".gif\" \".tiff\" \".png\" \".bmp\" } find-by-extensions" }