]> Shamusworld >> Repos - ardour-manual-diverged/commitdiff
fix HTML
authorRobin Gareus <robin@gareus.org>
Tue, 23 Feb 2016 22:01:12 +0000 (23:01 +0100)
committerRobin Gareus <robin@gareus.org>
Tue, 23 Feb 2016 22:01:12 +0000 (23:01 +0100)
_manual/24_lua-scripting/01_brain_dump.html

index 4333509a02c601e4ca470ff28b966f4716253f93..2a8be189e77871949b6ad8ca321e58c91eaba526 100644 (file)
@@ -24,7 +24,7 @@ Lua is also a glue language it allows to tie existing component in Ardour togeth
 and most importantly Lua is one of the few scripting-languages which be safely used in a real-time environment.
 </p><p>
 A good introduction to Lua is the book <a href="http://www.lua.org/pil/">Programming in Lua</a>. The first edition is available online,
-but if you have the means buy a copy of the book, which not only helps to support the Lua project,
+but if you have the means buy a copy of the book, it not only helps to support the Lua project,
 but provides for a much nicer reading and learning experience.
 </p>
 
@@ -143,8 +143,8 @@ The common part for all scripts is the "Descriptor". It's a Lua function which r
        <dt>type [required]</dt><dd>one of "<code>DSP</code>", "<code>Session</code>", "<code>EditorHook</code>", "<code>EditorAction</code>" (the type is not case-sensitive)</dd>
        <dt>name [required]</dt><dd>Name/Title of the script</dd>
        <dt>author</dt<dd>Your Name</dd>
-       <dt>license</dt<dd> The license of the script (e.g. "GPL" or "MIT")</dd>
-       <dt>description</dt<dd>A longer text explaining to the user what the script does</dd>
+       <dt>license</dt><dd>The license of the script (e.g. "GPL" or "MIT")</dd>
+       <dt>description</dt><dd>A longer text explaining to the user what the script does</dd>
 </dl>
 
 <p class="note">