summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibVideo
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2022-11-09 10:56:12 -0500
committerLinus Groh <mail@linusgroh.de>2022-11-09 16:00:32 +0000
commit6911c5545c24b8b22eb348e53bdc8dc5d83343ff (patch)
tree9848b8e5553db1e1fce3da47203a5bb91b17f213 /Userland/Libraries/LibVideo
parentbc807466f9acc21e704a26c7e0f11dfdcd605a5f (diff)
downloadserenity-6911c5545c24b8b22eb348e53bdc8dc5d83343ff.zip
Everywhere: Fix a few comment typos
Diffstat (limited to 'Userland/Libraries/LibVideo')
-rw-r--r--Userland/Libraries/LibVideo/VP9/Decoder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibVideo/VP9/Decoder.cpp b/Userland/Libraries/LibVideo/VP9/Decoder.cpp
index d03f9df5fd..a41a6980fb 100644
--- a/Userland/Libraries/LibVideo/VP9/Decoder.cpp
+++ b/Userland/Libraries/LibVideo/VP9/Decoder.cpp
@@ -396,7 +396,7 @@ DecoderErrorOr<void> Decoder::predict_intra(u8 plane, u32 x, u32 y, bool have_le
// - [0]
// - [1 .. block_size]
// - [block_size + 1 .. block_size * 2]
- // The array indices must be offset by 1 to accomodate index -1.
+ // The array indices must be offset by 1 to accommodate index -1.
Vector<Intermediate>& above_row = m_buffers.above_row;
DECODER_TRY_ALLOC(above_row.try_resize_and_keep_capacity(block_size * 2 + 1));
auto above_row_at = [&](i32 index) -> Intermediate& {