fix section declarations in modules

This commit is contained in:
rolux 2012-06-24 17:33:13 +02:00
parent 1fb1cf2727
commit fa84921333
3 changed files with 6 additions and 6 deletions

View file

@ -4,7 +4,7 @@ Ox.load.Geo = function(options, callback) {
Ox.getJSON(Ox.PATH + 'Ox.Geo/json/Ox.Geo.json?' + Ox.VERSION, function(data) { Ox.getJSON(Ox.PATH + 'Ox.Geo/json/Ox.Geo.json?' + Ox.VERSION, function(data) {
//@ Constants ---------------------------------------------------------- //@ Constants
/*@ /*@
Ox.COUNTRIES <[o]> Array of countries Ox.COUNTRIES <[o]> Array of countries
@ -139,7 +139,7 @@ Ox.load.Geo = function(options, callback) {
}; };
//@ Functions ---------------------------------------------------------- //@ Functions
/*@ /*@
Ox.getCountryByCode <f> Returns a country object for a given country code Ox.getCountryByCode <f> Returns a country object for a given country code

View file

@ -2,7 +2,7 @@
Ox.load.Image = function(options, callback) { Ox.load.Image = function(options, callback) {
//@ Image ------------------------------------------------------------------ //@ Image
/*@ /*@
Ox.Image <f> Generic image object Ox.Image <f> Generic image object

View file

@ -4,7 +4,7 @@ Ox.load.Unicode = function(options, callback) {
Ox.getJSON(Ox.PATH + 'Ox.Unicode/json/Ox.Unicode.json?' + Ox.VERSION, function(chars) { Ox.getJSON(Ox.PATH + 'Ox.Unicode/json/Ox.Unicode.json?' + Ox.VERSION, function(chars) {
//@ Constants ---------------------------------------------------------- //@ Constants
//@ Ox.UNICODE_CHARACTERS <o> Unicode characters //@ Ox.UNICODE_CHARACTERS <o> Unicode characters
Ox.UNICODE_CHARACTERS = chars; Ox.UNICODE_CHARACTERS = chars;
@ -25,10 +25,10 @@ Ox.load.Unicode = function(options, callback) {
byType[data.type].push(char); byType[data.type].push(char);
}); });
//@ Functions ---------------------------------------------------------- //@ Functions
/*@ /*@
Ox.getCharactersByASCII <f> Returns all unicode equivalents of a given ASCII string Ox.getCharactersByASCII <f> Returns all unicode equivalents of a given ASCII character
(ascii) -> <[s]> Unicode Characters (ascii) -> <[s]> Unicode Characters
ascii <s> ASCII string ascii <s> ASCII string
> Ox.getCharactersByASCII('A').length > Ox.getCharactersByASCII('A').length