From c0ca6e470f27dfd7429b79f1015462a834c19408 Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Wed, 6 Apr 2022 12:05:26 +0100 Subject: AK+Userland: Rename Array::front/back to first/last This is the name that is used for every other collection type so let's be consistent. --- Userland/Libraries/LibAudio/MP3Tables.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland/Libraries/LibAudio/MP3Tables.h') diff --git a/Userland/Libraries/LibAudio/MP3Tables.h b/Userland/Libraries/LibAudio/MP3Tables.h index 4939d32876..0e773f95f5 100644 --- a/Userland/Libraries/LibAudio/MP3Tables.h +++ b/Userland/Libraries/LibAudio/MP3Tables.h @@ -115,7 +115,7 @@ constexpr auto MakeMixedScaleFactorBandArray() Array result {}; constexpr auto long_bands = MakeLongScaleFactorBandArray(); - constexpr auto short_bands = MakeShortScaleFactorBandArray(); + constexpr auto short_bands = MakeShortScaleFactorBandArray(); for (size_t i = 0; i < long_bands.size(); i++) { result[i] = long_bands[i]; -- cgit v1.2.3