From 216ab40c72b61f85a126e757afc0237b6b97aa0c Mon Sep 17 00:00:00 2001 From: Santiago Castro Date: Sun, 16 Apr 2017 18:28:27 -0300 Subject: [PATCH] Fix broken Markdown headings --- node_modules/commander/Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node_modules/commander/Readme.md b/node_modules/commander/Readme.md index d164401..387d03b 100644 --- a/node_modules/commander/Readme.md +++ b/node_modules/commander/Readme.md @@ -13,7 +13,7 @@ Options with commander are defined with the `.option()` method, also serving as documentation for the options. The example below parses args and options from `process.argv`, leaving remaining args as the `program.args` array which were not consumed by options. ```js -#!/usr/bin/env node +# !/usr/bin/env node /** * Module dependencies. @@ -98,7 +98,7 @@ console.log(' args: %j', program.args); `--help` is used. ```js -#!/usr/bin/env node +# !/usr/bin/env node /** * Module dependencies.