From d70613151c6fed9eb89565391968b52efea3b232 Mon Sep 17 00:00:00 2001 From: Joseph Herlant Date: Mon, 17 Sep 2018 09:50:43 -0700 Subject: [PATCH] Fix typo: occurrencies -> occurrences --- src/pulsecore/dynarray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pulsecore/dynarray.h b/src/pulsecore/dynarray.h index 0b0588001..bf7dddc12 100644 --- a/src/pulsecore/dynarray.h +++ b/src/pulsecore/dynarray.h @@ -54,7 +54,7 @@ void *pa_dynarray_last(pa_dynarray *array); int pa_dynarray_remove_by_index(pa_dynarray *array, unsigned i); /* Returns -PA_ERR_NOENTITY if p is not found in the array, and zero - * otherwise. If the array contains multiple occurrencies of p, only one of + * otherwise. If the array contains multiple occurrences of p, only one of * them is removed (and it's unspecified which one). */ int pa_dynarray_remove_by_data(pa_dynarray *array, void *p);