hare

The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit fe1ded2711d50fc6a8877c3148823dbe7c8f9e23
parent 6310076e5189a2a5a7a80aff1929603e7e6b6af2
Author: Steven Guikal <void@fluix.dev>
Date:   Wed, 21 Apr 2021 11:41:18 -0400

Update more references in READMEs

Diffstat:
Mmath/random/README | 2+-
Municode/README | 6+++---
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/math/random/README b/math/random/README @@ -2,5 +2,5 @@ math::random provides a pseudorandom number generator, which yields a deterministic sequence of psuedo-random numbers based on a seed value. Beware! This module is NOT suitable for generating genuinely random data for -cryptographic use. See [crypto::random] for cryptographically secure random +cryptographic use. See [[crypto::random]] for cryptographically secure random number generation. diff --git a/unicode/README b/unicode/README @@ -1,9 +1,9 @@ This module provides Unicode support for Hare programs. Programs which deal with basic text manipulation are likely to be served -sufficiently by the [encoding::utf8], [strings], [ascii], and so on. For +sufficiently by the [[encoding::utf8]], [[strings]], [[ascii]], and so on. For example, the question of "is this character uppercase?" is often sufficiently -answered with [ascii::isupper], and matters such as Unicode string equivalence +answered with [[ascii::isupper]], and matters such as Unicode string equivalence are often fraught with error potential - for example, a vulnerability was once found in a web login form which used a Unicode equivalence comparison on usernames, allowing a malicious actor to register a username which was bytewise @@ -24,7 +24,7 @@ accompanied by a reading of the Unicode standard. The documentation for each type and function makes an effort to direct the reader to the appropriate part of the Unicode standard. -See the [i18n] module for a high-level internationalization API. +See the [[i18n]] module for a high-level internationalization API. The present implementation of this module conforms to Unicode 13.0.0, which was released on March 11th, 2020.