From 44bda57c897cc148c21c204378f4a5f775470d8a Mon Sep 17 00:00:00 2001 From: C-3PO Date: Sun, 21 Jul 2019 17:00:47 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Fix=20documentation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 39a451b..51e9b2d 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ In the project where you want to use this library, add the following to your `pa ```json { "dependencies": { - "ssn": "git+https://git.jedipedia.net/swtor/argument-parser.git" + "argument-parser": "git+https://git.jedipedia.net/swtor/argument-parser.git" } } ``` @@ -48,14 +48,14 @@ import parseArguments from 'argument-parser'; const { args, fail } = parseArguments({ input: { short: 'i', - description: 'Path to the input file', + description: 'Path to the input file' }, size: { default: '0', short: 's', description: 'Size of the file, must be a non-negative integer', - verify: (str) => (str.match(/^[0-9]+$/) !== null), - }, + verify: str => str.match(/^[0-9]+$/) !== null + } }); try { @@ -88,7 +88,7 @@ OPTIONS ## License -Copyright (C) 2018 Jedipedia.net +Copyright (C) 2018-2019 Jedipedia.net This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as @@ -97,8 +97,8 @@ License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License -along with this program. If not, see . +along with this program. If not, see .