From c0885fec9b0eefd76a829db3d39e39f9eda06a99 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Mon, 12 Oct 2020 18:20:05 +1100 Subject: [PATCH] docs: fix simple typo, intented -> intended (#138) There is a small typo in src/utils/list_cpu_features.c. Should read `intended` rather than `intented`. --- src/utils/list_cpu_features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/list_cpu_features.c b/src/utils/list_cpu_features.c index 0783648..5058df4 100644 --- a/src/utils/list_cpu_features.c +++ b/src/utils/list_cpu_features.c @@ -44,7 +44,7 @@ // the data accordingly. // We use a bump allocator to allocate strings and nodes of the tree, -// Memory is not intented to be reclaimed. +// Memory is not intended to be reclaimed. typedef struct { char* ptr; size_t size;