diff --git a/README.md b/README.md index f8b7ab6..4f68bc4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ ECDSA-CSR.js ========= -Sponsored by [Root](https://therootcompany.com) +Sponsored by [Root](https://therootcompany.com), built for [ACME.js](https://git.coolaj86.com/coolaj86/acme.js) and [Greenlock.js](https://git.coolaj86.com/coolaj86/greenlock-express.js) A focused, **zero-dependency** library that can do exactly one thing really, really well: * Generate a Certificate Signing Requests (CSR), and sign it! @@ -38,7 +38,8 @@ var edsacsr = require('ecdsa-csr'); var domains = [ 'example.com', 'www.example.com', 'api.example.com' ]; return ecdsacsr({ key: key, domains: domains }).then(function (csr) { - console.log('CSR PEM:', csr); + console.log('CSR PEM:'); + console.log(csr); }); ```