From b653360299154508a1419447aff1003e833a4fdb Mon Sep 17 00:00:00 2001 From: John Benediktsson Date: Mon, 12 Sep 2011 10:56:39 -0700 Subject: [PATCH] math.primes.safe: fix docs. --- basis/math/primes/safe/safe-docs.factor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basis/math/primes/safe/safe-docs.factor b/basis/math/primes/safe/safe-docs.factor index 21f84c4e3c..231fde460a 100644 --- a/basis/math/primes/safe/safe-docs.factor +++ b/basis/math/primes/safe/safe-docs.factor @@ -27,7 +27,7 @@ HELP: safe-prime? ARTICLE: "math.primes.safe" "Safe prime numbers" -"The " { $vocab-link "math.primes.safe" } " vocabulary implements words to calculate safe prime numbers. Safe primes are of the form p = 2q + 1, where p,q are prime. Safe primes have desirable qualities for cryptographic applications." $nl +"The " { $vocab-link "math.primes.safe" } " vocabulary implements words to calculate safe prime numbers. Safe primes are of the form " { $snippet "p = 2q + 1" } ", where " { $snippet "p" } ", " { $snippet "q" } " are prime. Safe primes have desirable qualities for cryptographic applications." $nl "Testing if a number is a safe prime:" { $subsections safe-prime? }