From 6af99c3c21d64d95a8593ed90dac68fa450e6837 Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Fri, 26 Feb 2016 08:56:25 -0800 Subject: [PATCH] Fix "doesnt" typo. --- basis/help/lint/checks/checks-docs.factor | 2 +- extra/html/parser/analyzer/analyzer-docs.factor | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/basis/help/lint/checks/checks-docs.factor b/basis/help/lint/checks/checks-docs.factor index 640337aec1..d73f4d25de 100644 --- a/basis/help/lint/checks/checks-docs.factor +++ b/basis/help/lint/checks/checks-docs.factor @@ -7,7 +7,7 @@ HELP: check-example HELP: check-values { $values { "word" word } { "element" sequence } } -{ $description "Throws an error if the $values pair doesnt match the declared stack effect." } +{ $description "Throws an error if the $values pair doesn't match the declared stack effect." } { $examples { $unchecked-example "USING: help.lint.checks math ;" diff --git a/extra/html/parser/analyzer/analyzer-docs.factor b/extra/html/parser/analyzer/analyzer-docs.factor index 1946ca081d..6a65b21e7c 100644 --- a/extra/html/parser/analyzer/analyzer-docs.factor +++ b/extra/html/parser/analyzer/analyzer-docs.factor @@ -8,7 +8,7 @@ HELP: html-class? HELP: stack-find { $values { "seq" sequence } { "quot" { $quotation ( elt -- 1/0/-1 ) } } { "i/f" "an index or " { $link f } } } -{ $description "Takes a sequence and a quotation expected to return -1 if the element decrements the stack, 0 if it doesnt affect it and 1 if it increments it. Then finds the first element where the stack is empty." } ; +{ $description "Takes a sequence and a quotation expected to return -1 if the element decrements the stack, 0 if it doesn't affect it and 1 if it increments it. Then finds the first element where the stack is empty." } ; HELP: tag-classifier { $values { "string" string } { "quot" { $quotation ( elt -- 1/0/-1 ) } } }