From 709b5a0fec5987ec60823bbc36408a559aa75c98 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Fri, 10 Feb 2023 05:16:00 +0100 Subject: [PATCH] chore: fix typo Signed-off-by: oSumAtrIX --- src/main/kotlin/app/revanced/patcher/extensions/Extensions.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/revanced/patcher/extensions/Extensions.kt b/src/main/kotlin/app/revanced/patcher/extensions/Extensions.kt index fc444fc..607b24d 100644 --- a/src/main/kotlin/app/revanced/patcher/extensions/Extensions.kt +++ b/src/main/kotlin/app/revanced/patcher/extensions/Extensions.kt @@ -101,7 +101,7 @@ fun MutableMethod.removeInstruction(index: Int) = this.implementation!!.removeIn fun MutableMethod.label(index: Int) = this.implementation!!.newLabelForIndex(index) /** - * Get the instruction at given index in the method's implementation. + * Get the instruction at the given index in the method's implementation. * @param index The index to get the instruction at. * @return The instruction. */