mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
Fix Lua doc formatting (reserved words)
This commit is contained in:
parent
b6daff81ec
commit
5f5a577e08
1 changed files with 2 additions and 2 deletions
|
|
@ -548,8 +548,8 @@ function ctorname ($name) {
|
||||||
|
|
||||||
function luaname ($name) {
|
function luaname ($name) {
|
||||||
# reserved Lua words
|
# reserved Lua words
|
||||||
$name = preg_replace ('/:end/', ':_end', $name);
|
$name = preg_replace ('/:end$/', ':_end', $name);
|
||||||
$name = preg_replace ('/:type/', ':_type', $name);
|
$name = preg_replace ('/:type$/', ':_type', $name);
|
||||||
return $name;
|
return $name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue