From ea332343f9f8190ceb5e00f93553067abafa21f9 Mon Sep 17 00:00:00 2001 From: Harlan T Wood Date: Wed, 22 Mar 2017 12:34:16 -0700 Subject: [PATCH 1/2] fix es5 advice --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b385d2..e29cdf1 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ The profiles/identity portion of this library can be used to: 1. recover a JSON profile from signed tokens 1. validate signed profile tokens -*Note: this document uses ES6 in its examples but it is compiled down to Javascript (ES5) and is perfectly compatible with it. If you're using the latter, just make a few adjustments to the examples below (e.g. use "let" instead of "var").* +*Note: this document uses ES6 in its examples but it is compiled down to Javascript (ES5) and is perfectly compatible with it. If you're using the latter, just make a few adjustments to the examples below (e.g. use "var" instead of "let").* ## Auth From 39fc6dc2cd49cfd9132fd5e31ef08402f73cc27e Mon Sep 17 00:00:00 2001 From: Harlan T Wood Date: Wed, 22 Mar 2017 12:36:53 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e29cdf1..f615a6a 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ The profiles/identity portion of this library can be used to: ```es6 import { requestSignIn } from 'blockstack' -var appManifest = { +let appManifest = { name: "Hello, Blockstack", start_url: "https://helloblockstack.com", description: "A simple demo of blockstack auth",