Skip to content

Commit

Permalink
fixup formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC authored Jul 23, 2024
1 parent 19df12f commit 43745f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/InlineStrings.jl
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ end

function InlineStringType(n::Integer)
n > 255 && stringtoolong(InlineString, n)
return n < 2 ? InlineString1 : n < 4 ? InlineString3 :
return n < 2 ? InlineString1 : n < 4 ? InlineString3 :
n < 8 ? InlineString7 : n < 16 ? InlineString15 :
n < 32 ? InlineString31 : n < 64 ? InlineString63 :
n < 128 ? InlineString127 : InlineString255
Expand Down

0 comments on commit 43745f1

Please sign in to comment.