From 9d1f6504ffe9a68d5bb10fd27eeb51adc36167dd Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Thu, 30 Nov 2023 13:21:21 +0000 Subject: [PATCH] docs(readme): update example snippets --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c478ecec..0288b2a0 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The full API of this library can be found in [api.md](https://www.github.com/orb import Orb from 'orb-billing'; const orb = new Orb({ - apiKey: 'My API Key', // defaults to process.env["ORB_API_KEY"] + apiKey: process.env['ORB_API_KEY'], // This is the default and can be omitted }); async function main() { @@ -42,7 +42,7 @@ This library includes TypeScript definitions for all request params and response import Orb from 'orb-billing'; const orb = new Orb({ - apiKey: 'My API Key', // defaults to process.env["ORB_API_KEY"] + apiKey: process.env['ORB_API_KEY'], // This is the default and can be omitted }); async function main() {