From c68b4d6f7ad9810ceb2cbba8c7e1e20793626525 Mon Sep 17 00:00:00 2001 From: Anna Montare <267455234+annamontare-nava@users.noreply.github.com> Date: Mon, 8 Jun 2026 17:17:55 -0600 Subject: [PATCH] fix typos --- README.md | 4 ++-- code.json | 2 +- server/index.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 23574fd..4081b9f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ BlueButton Sample Node Client Application ===================================================== ## Project Description -A sample applciation, written in NodeJS utilizing the Node SDK to connect to BlueButton. +A sample application, written in NodeJS utilizing the Node SDK to connect to BlueButton. ## About the Project The [Blue Button 2.0 API](https://bluebutton.cms.gov/) provides Medicare enrollee claims data to applications using the [OAuth2.0 authorization flow](https://datatracker.ietf.org/doc/html/rfc6749). We aim to provide a developer-friendly, standards-based API that enables people with Medicare to connect their claims data to the applications, services, and research programs they trust. @@ -29,7 +29,7 @@ The following guide is for members of the project team who have access to the re ### Create a Blue Button Sandbox Account Create an account at the link below, and register your test application, to get your Blue Button Sandbox Credentials which will allow you to access the Blue Button synthetic data. These credentials will be necessary to run this sample application as well as -utilize the Blue Button data within your own applcation. See the section below 'Running the Back-end & Front-end'. +utilize the Blue Button data within your own application. See the section below 'Running the Back-end & Front-end'. https://sandbox.bluebutton.cms.gov/v1/accounts/create diff --git a/code.json b/code.json index e5fd361..7640f03 100644 --- a/code.json +++ b/code.json @@ -1,6 +1,6 @@ { "name": "bluebutton-sample-client-nodejs-react", - "description": "A sample applciation, written in NodeJS utilizing the Node SDK to connect to BlueButton.", + "description": "A sample application, written in NodeJS utilizing the Node SDK to connect to BlueButton.", "status": "Production", "permissions": { "licenses": [ diff --git a/server/index.ts b/server/index.ts index 783fbd7..61ad014 100644 --- a/server/index.ts +++ b/server/index.ts @@ -34,7 +34,7 @@ function clearBB2Data() { } // AuthorizationToken holds access grant info: -// access token, expire in, expire at, token type, scope, refreh token, etc. +// access token, expire in, expire at, token type, scope, refresh token, etc. // it is associated with current logged in user in real app, // check SDK js docs for more details.