hare

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

commit 2cd3c15b8b5a53c934b472ca078bd9c78a1309f6
parent 3654994805d0d19c6f21cb95b315fa3b954a79c1
Author: Sebastian <sebastian@sebsite.pw>
Date:   Fri, 11 Mar 2022 18:35:08 -0500

all: s/package/module/g

Signed-off-by: Sebastian <sebastian@sebsite.pw>

Diffstat:
Mcrypto/poly1305/README | 2+-
Mmime/README | 2+-
Mnet/README | 4++--
3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/crypto/poly1305/README b/crypto/poly1305/README @@ -1,4 +1,4 @@ -This package provides the poly1305 MAC as defined in RFC 8439. +This module provides the poly1305 MAC as defined in RFC 8439. This is a low-level module which implements cryptographic primitives. Direct use of cryptographic primitives is not recommended for non-experts, as incorrect use diff --git a/mime/README b/mime/README @@ -1,4 +1,4 @@ -The mime package implements a subset of RFC 2045, namely the subset necessary to +The mime module implements a subset of RFC 2045, namely the subset necessary to handle parsing and encoding Media Types (formerly "MIME types"), and to map them with file extensions. diff --git a/net/README b/net/README @@ -1,5 +1,5 @@ -The net package provides some general-purpose interfaces and support code, but -generally users are directed to the subpackages, where implementations of +The net module provides some general-purpose interfaces and support code, but +generally users are directed to the submodules, where implementations of various network protocols are provided, such as [[net::tcp]] or [[net::dns]]. A porcelain API for establishing an outgoing connection, able to automatically