From a3ae2e71ffd0ca8619b1439bb9dfce027f8bb9c2 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 18 Jan 2025 14:13:53 +1000 Subject: [PATCH] Fix a typo. --- miniaudio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miniaudio.h b/miniaudio.h index 62a0ef98..317e42fb 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -6287,7 +6287,7 @@ Job Queue /* Slot Allocator -------------- -The idea of the slot allocator is for it to be used in conjunction with a fixed sized buffer. You use the slot allocator to allocator an index that can be used +The idea of the slot allocator is for it to be used in conjunction with a fixed sized buffer. You use the slot allocator to allocate an index that can be used as the insertion point for an object. Slots are reference counted to help mitigate the ABA problem in the lock-free queue we use for tracking jobs.