From fbf6d4d107977b8c1c963e2536493e78a27d4800 Mon Sep 17 00:00:00 2001 From: Luan Muniz Date: Wed, 30 Dec 2015 12:25:14 -0200 Subject: [PATCH] Fix typo error Just replacing `'` for `"` in the `require("express")` because the `'` will end the script string in the middle --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41c454f..922feb1 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ and that will cause you to be rate-limited and or blocked from the ACME server) Let's Encrypt in 128 characters, with spaces! ``` -node -e 'require("letsencrypt-express").testing().create( require('express')().use(function (_, r) { r.end("Hi!") }) ).listen()' +node -e 'require("letsencrypt-express").testing().create( require("express")().use(function (_, r) { r.end("Hi!") }) ).listen()' ``` ### More realistic