Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fixed grammatical issue ("you" became "your") and changed accidentally implied racial slur ("your api key", without camelcase or spaces, turns into "your a pikey", so that's been switched to camelcase).
  • Loading branch information
NoahPlanGrid authored Jul 26, 2018
1 parent 1b30dc3 commit b013c7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ However, you will need to provide your API key to gain access. There are
three ways to provide the key. The simplest is to pass it directly as an
argument to `Create`:

IPlanGridApi api = PlanGridClient.Create("yourapikey");
IPlanGridApi api = PlanGridClient.Create("yourApiKey");

This has the advantage of being straightforward, but has the disadvantage of
baking the key into your code, which reduces security and makes it more
difficult to update.

Alternatively, you can set the key in you `App.config` (or `Web.config`) file:
Alternatively, you can set the key in your `App.config` (or `Web.config`) file:

<appSettings>
<add key="PlanGridApiKey" value="yourapikey" />
<add key="PlanGridApiKey" value="yourApiKey" />
</appSettings>

Ensure that you do not already have an `<appSettings>` node -- if you do, add
Expand Down Expand Up @@ -59,4 +59,4 @@ To get the next 20 projects (after the first 50), you would call:

## Copyright

Copyright &copy; PlanGrid, Inc. MIT License; see LICENSE for further details.
Copyright &copy; PlanGrid, Inc. MIT License; see LICENSE for further details.

0 comments on commit b013c7e

Please sign in to comment.