From 7fd48a6739eff18bb0b7758b0d4df8140f905f41 Mon Sep 17 00:00:00 2001 From: Raf Czlonka Date: Wed, 28 Oct 2020 06:16:40 +0000 Subject: [PATCH] Fix wording _[...]_ decision, I decided _[...]_ is a tautology --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d619f5..397af0d 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ The [hpack(3)](hpack.md) header compression API for HTTP/2, written in C. I either didn't like the license or the style of the existing C code. And I wanted to have a small [HPACK][4] implementation that fits into a - single `.c` and `.h` file. As a design decision, I decided to be + single `.c` and `.h` file. As a design goal, I decided to be extra careful with input and output buffers: avoiding to use dangerous pointer arithmetics, using allocated (heap) data instead of stack buffers, depending on extra features of OpenBSD's "otto" malloc(3).