diff --git a/pyomo/solvers/plugins/solvers/GUROBI.py b/pyomo/solvers/plugins/solvers/GUROBI.py index c54d0014f61..06ad3d275be 100644 --- a/pyomo/solvers/plugins/solvers/GUROBI.py +++ b/pyomo/solvers/plugins/solvers/GUROBI.py @@ -88,7 +88,7 @@ def __new__(cls, *args, **kwds): logger.error('Unknown IO type: %s' % mode) return # The Gurobi ASL solver was 'gurobi_ampl' through Gurobi 11, - # then was renamed to 'gurobi'. Check 'gurobi' frst, then + # then was renamed to 'gurobi'. Check 'gurobi' first, then # 'gurobi_ampl'. for exe_name in ('gurobi', 'gurobi_ampl'): exe = Executable(exe_name)