From 2719c438f3261d6b0345e70afd3ffff6a97b7543 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Tue, 3 Jan 2023 20:02:56 -0600 Subject: [PATCH] Mark `lendiff(::Edit)` as private API --- src/Edit.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Edit.jl b/src/Edit.jl index 64af3c5..9ad5893 100644 --- a/src/Edit.jl +++ b/src/Edit.jl @@ -56,7 +56,7 @@ function BioGenerics.rightposition(e::Edit) end end -function lendiff(edit::Edit) +function _lendiff(edit::Edit) x = _mutation(edit) # Each edit type has logic for its length, we just need to know what direction to go multiplier = x isa Substitution ? 0 : (x isa Deletion ? -1 : 1)