typo fixes

This commit is contained in:
Doug Bird 2018-06-13 01:10:41 -07:00
parent 97547a5e9c
commit 651c5f457f
11 changed files with 19 additions and 19 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env node
const meName = 'generate-js-desc.js';
const meName = 'generate-js-tld-desc.js';
process.on('unhandledRejection', error => {
console.error(meName + ": (FATAL)", error);
@ -32,7 +32,7 @@ if (!program.quiet) {
console.log(" see README.md for licensing and other information");
console.log(" https://github.com/katmore/tld-enum#readme");
console.log("");
console.log(" Generates new javascript format file 'desc.js' from the 'tlds.csv' file");
console.log(" Generates new JavaScript format file 'desc.js' from the 'tlds.csv' file");
console.log("");
}

View File

@ -1,6 +1,6 @@
#!/usr/bin/env node
const meName = 'generate-js-info.js';
const meName = 'generate-js-tld-info.js';
process.on('unhandledRejection', error => {
console.error(meName + ": (FATAL)", error);
@ -32,7 +32,7 @@ if (!program.quiet) {
console.log(" see README.md for licensing and other information");
console.log(" https://github.com/katmore/tld-enum#readme");
console.log("");
console.log(" Generates new javascript format file 'info.js' from the 'tlds.csv' file");
console.log(" Generates new JavaScript format file 'info.js' from the 'tlds.csv' file");
console.log("");
}

View File

@ -1,6 +1,6 @@
#!/usr/bin/env node
const meName = 'generate-js-list.js';
const meName = 'generate-js-tld-list.js';
process.on('unhandledRejection', error => {
console.error(meName + ": (FATAL)", error);
@ -30,7 +30,7 @@ if (!program.quiet) {
console.log(" see README.md for licensing and other information");
console.log(" https://github.com/katmore/tld-list#readme");
console.log("");
console.log(" Generates new javascript format file 'list.js' from the 'tlds.csv' file");
console.log(" Generates new JavaScript format file 'list.js' from the 'tlds.csv' file");
console.log("");
}

View File

@ -1,6 +1,6 @@
#!/usr/bin/env node
const meName = 'generate-js-type.js';
const meName = 'generate-js-tld-type.js';
process.on('unhandledRejection', error => {
console.error(meName + ": (FATAL)", error);
@ -32,7 +32,7 @@ if (!program.quiet) {
console.log(" see README.md for licensing and other information");
console.log(" https://github.com/katmore/tld-enum#readme");
console.log("");
console.log(" Generates new javascript format file 'type.js' from the 'tlds.csv' file");
console.log(" Generates new JavaScript format file 'type.js' from the 'tlds.csv' file");
console.log("");
}

View File

@ -1,6 +1,6 @@
#!/usr/bin/env node
const meName = 'generate-js-tld-desc.json';
const meName = 'generate-json-tld-desc.json';
process.on('unhandledRejection', error => {
console.error(meName + ": (FATAL)", error);
@ -32,7 +32,7 @@ if (!program.quiet) {
console.log(" see README.md for licensing and other information");
console.log(" https://github.com/katmore/tld-enum#readme");
console.log("");
console.log(" Generates new javascript desc format file from the 'tlds.csv' file");
console.log(" Generates new JSON format file 'tld-desc.json' from the 'tlds.csv' file");
console.log("");
}

View File

@ -32,7 +32,7 @@ if (!program.quiet) {
console.log(" see README.md for licensing and other information");
console.log(" https://github.com/katmore/tld-enum#readme");
console.log("");
console.log(" Generates new javascript desc format file from the 'tlds.csv' file");
console.log(" Generates new JSON format file 'tld-info.json' from the 'tlds.csv' file");
console.log("");
}

View File

@ -32,7 +32,7 @@ if (!program.quiet) {
console.log(" see README.md for licensing and other information");
console.log(" https://github.com/katmore/tld-enum#readme");
console.log("");
console.log(" Generates new JSON format files from the 'tlds.csv' file");
console.log(" Generates new JSON format file 'tld-list.json' from the 'tlds.csv' file");
console.log("");
}

View File

@ -32,7 +32,7 @@ if (!program.quiet) {
console.log(" see README.md for licensing and other information");
console.log(" https://github.com/katmore/tld-enum#readme");
console.log("");
console.log(" Generates new javascript desc format file from the 'tlds.csv' file");
console.log(" Generates new JSON format file 'tld-type.json' from the 'tlds.csv' file");
console.log("");
}

View File

@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php
new class() {
const ME_NAME = 'generate-php-tld-enum.php';
const ME_NAME = 'generate-php-tld-desc.php';
const TLDS_CSV_PATH = __DIR__ . '/../../tlds.csv';
const TLD_DESC_PATH = __DIR__ . '/../../formats/php/TldEnum/TldDesc.php';
private static $_quietMode = false;
@ -17,7 +17,7 @@ new class() {
echo " see README.md for licensing and other information\n";
echo " https://github.com/katmore/tld-enum#readme\n";
echo "\n";
echo " Generates new PHP format files from the 'tlds.csv' file\n";
echo " Generates new PHP format file 'TldDesc.php' from the 'tlds.csv' file\n";
echo "\n";
}

View File

@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php
new class() {
const ME_NAME = 'generate-php-tld-enum.php';
const ME_NAME = 'generate-php-tld-info.php';
const TLDS_CSV_PATH = __DIR__ . '/../../tlds.csv';
const TLD_INFO_PATH = __DIR__ . '/../../formats/php/TldEnum/TldInfo.php';
private static $_quietMode = false;
@ -17,7 +17,7 @@ new class() {
echo " see README.md for licensing and other information\n";
echo " https://github.com/katmore/tld-enum#readme\n";
echo "\n";
echo " Generates new PHP format files from the 'tlds.csv' file\n";
echo " Generates new PHP format file 'TldInfo.php' from the 'tlds.csv' file\n";
echo "\n";
}

View File

@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php
new class() {
const ME_NAME = 'generate-php-tld-enum.php';
const ME_NAME = 'generate-php-tld-type.php';
const TLDS_CSV_PATH = __DIR__ . '/../../tlds.csv';
const TLD_TYPE_PATH = __DIR__ . '/../../formats/php/TldEnum/TldType.php';
private static $_quietMode = false;
@ -17,7 +17,7 @@ new class() {
echo " see README.md for licensing and other information\n";
echo " https://github.com/katmore/tld-enum#readme\n";
echo "\n";
echo " Generates new PHP format files from the 'tlds.csv' file\n";
echo " Generates new PHP format file 'TldType.php' from the 'tlds.csv' file\n";
echo "\n";
}