Skip to content
This repository was archived by the owner on Apr 22, 2020. It is now read-only.

Commit 077b31a

Browse files
issue 98: replace uses of "LUA" with "Lua"
1 parent 7133f97 commit 077b31a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGES.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ <h2>4 Jul 2008</h2>
6262
</ul>
6363
<h2>5 Jul 2008</h2>
6464
<ul>
65-
<li>Defined language extensions for Lisp and LUA</code>
65+
<li>Defined language extensions for Lisp and Lua</code>
6666
</ul>
6767
<h2>14 Jul 2008</h2>
6868
<ul>

README.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h3 id="langs">Which languages does it work for?</h3>
7979
<a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-hs"
8080
><code>Haskell</code></a>,
8181
<a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-lua.js"
82-
><code>LUA</code></a>,
82+
><code>Lua</code></a>,
8383
<a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-ml.js"
8484
><code>OCAML, SML, F#</code></a>,
8585
<a href="http://code.google.com/p/google-code-prettify/source/browse/trunk/src/lang-vb.js"

src/lang-lua.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,16 @@
1616

1717
/**
1818
* @fileoverview
19-
* Registers a language handler for LUA.
19+
* Registers a language handler for Lua.
2020
*
2121
*
2222
* To use, include prettify.js and this file in your HTML page.
2323
* Then put your code in an HTML tag like
24-
* <pre class="prettyprint lang-lua">(my LUA code)</pre>
24+
* <pre class="prettyprint lang-lua">(my Lua code)</pre>
2525
*
2626
*
2727
* I used http://www.lua.org/manual/5.1/manual.html#2.1
28-
* Because of the long-bracket concept used in strings and comments, LUA does
28+
* Because of the long-bracket concept used in strings and comments, Lua does
2929
* not have a regular lexical grammar, but luckily it fits within the space
3030
* of irregular grammars supported by javascript regular expressions.
3131
*

tests/prettify_test.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ <h1>Bug 22 - Line numbers and other non-code spans in code</h1>
748748
<span class=nocode>09: </span> }
749749
<span class=nocode>10: </span>}</pre>
750750

751-
<h1>Bug 24 - LUA Syntax Highlighting</h1>
751+
<h1>Bug 24 - Lua Syntax Highlighting</h1>
752752
<pre class="prettyprint lang-lua" id="issue24">
753753
os=require("os")
754754
math=require("math")

0 commit comments

Comments
 (0)