Skip to content

Commit 796062c

Browse files
authored
Update src/FileFormats/LP/read.jl
1 parent bde3440 commit 796062c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FileFormats/LP/read.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ every identifier.
138138
This function tries to be a little cleverer and doesn't allocate.
139139
"""
140140
function _case_insenstive_identifier_to_keyword(input::String)
141-
if !(3 <= length(input) <= 8)
141+
if !(2 <= length(input) <= 8)
142142
return nothing # identifiers outside these lengths are not recognized
143143
elseif _compare_case_insenstive(input, 'm', _MAXIMIZE_KEYWORDS)
144144
return "MAXIMIZE"

0 commit comments

Comments
 (0)