diff options
author | Steven Barth <steven@midlink.org> | 2008-09-11 21:45:11 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-09-11 21:45:11 +0000 |
commit | d25d58bb4af9696ca6f9c16a36791bb072bfc891 (patch) | |
tree | 01aec30589eb70d2c9d8f918459c277131c00266 /build | |
parent | 5e001696e3f9db4b54eef267d3c66933979ca21f (diff) |
CBI2UVL: boolean is a datatype not a type
Diffstat (limited to 'build')
-rwxr-xr-x | build/cbi2uvl.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/cbi2uvl.lua b/build/cbi2uvl.lua index 9207bf816..83d3b4cb6 100755 --- a/build/cbi2uvl.lua +++ b/build/cbi2uvl.lua @@ -74,7 +74,7 @@ for i, sec in pairs(map.children) do if util.instanceof(sec, cbi.TypedSection) t end if util.instanceof(opt, cbi.Flag) then - print (" option type boolean") + print (" option datatype boolean") elseif util.instanceof(opt, cbi.DynamicList) then print (" option type list") elseif util.instanceof(opt, cbi.ListValue) then @@ -108,4 +108,4 @@ for i, sec in pairs(map.children) do if util.instanceof(sec, cbi.TypedSection) t end end end -end end
\ No newline at end of file +end end |