hare

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

commit 9f396d7ce8f03206f90e6c8f610e9f3218838924
parent 06e2a9bd4200cf11021f13d91d26139279775f3d
Author: Drew DeVault <sir@cmpwn.com>
Date:   Fri, 28 Jan 2022 10:08:00 +0100

mime: fix typos in comments

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Mmime/database.ha | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/mime/database.ha b/mime/database.ha @@ -8,12 +8,12 @@ export type mimetype = struct { exts: []str, }; -// List of media types with a statically allocated fields (though the list -// itself is dynamically allocated). +// List of media types with statically allocated fields (though the list itself +// is dynamically allocated). let static_db: []mimetype = []; -// List of media types with a heap-allocated fields, used when loading mime -// types from the system database. +// List of media types with heap-allocated fields, used when loading mime types +// from the system database. let heap_db: []mimetype = []; def MIME_BUCKETS: size = 256;