File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ function dtutils.check_min_api_version(min_api, script_name)
65
65
dt .print_error (" This application is written for lua api version " .. min_api .. " or later." )
66
66
dt .print_error (" The current lua api version is " .. current_api )
67
67
dt .print (" ERROR: " .. script_name .. " failed to load. Lua API version " .. min_api .. " or later required." )
68
- dt .control .sleep (2000 ) -- aqllow time for the error to display before script_manager writes it's error message
68
+ dt .control .sleep (2000 ) -- allow time for the error to display before script_manager writes it's error message
69
69
error (" Minimum API " .. min_api .. " not met for " .. script_name .. " ." , 0 )
70
70
end
71
71
end
@@ -101,8 +101,8 @@ function dtutils.check_max_api_version(max_api, script_name)
101
101
dt .print_error (" This application is written for lua api version " .. max_api .. " or earlier." )
102
102
dt .print_error (" The current lua api version is " .. current_api )
103
103
dt .print (" ERROR: " .. script_name .. " failed to load. Lua API version " .. max_api .. " or earlier required." )
104
- dt .control .sleep (2000 ) -- aqllow time for the error to display before script_manager writes it's error message
105
- error (" Mzximum API " .. max_api .. " not met for " .. script_name .. " ." , 0 )
104
+ dt .control .sleep (2000 ) -- allow time for the error to display before script_manager writes it's error message
105
+ error (" Maximum API " .. max_api .. " not met for " .. script_name .. " ." , 0 )
106
106
end
107
107
end
108
108
You can’t perform that action at this time.
0 commit comments