From 1499b71b37d8b6294effc607a96421baf2fdf740 Mon Sep 17 00:00:00 2001 From: Martchus Date: Wed, 27 Jan 2021 20:22:00 +0100 Subject: [PATCH] Fix typo --- matroska/ebmlelement.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matroska/ebmlelement.cpp b/matroska/ebmlelement.cpp index f99daf9..ce35067 100644 --- a/matroska/ebmlelement.cpp +++ b/matroska/ebmlelement.cpp @@ -105,7 +105,7 @@ void EbmlElement::internalParse(Diagnostics &diag) // check whether this element is actually a sibling of one of its parents rather then a child // (might be the case if the parent's size is unknown and hence assumed to be the max file size) if (m_parent && m_parent->m_sizeUnknown) { - // check at which level in the hierarchy the element is supposed to occour using its ID + // check at which level in the hierarchy the element is supposed to occur using its ID // (the only chance to find out whether the element belongs higher up in the hierarchy) const MatroskaElementLevel supposedLevel = matroskaIdLevel(m_id); const std::uint8_t actualLevel = level();