From 4d00c6e2ae9bcee94f204a7b54772cd38fc113c3 Mon Sep 17 00:00:00 2001 From: Aaron Heckmann Date: Sat, 1 Mar 2014 10:32:14 -0800 Subject: [PATCH] readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index dca6ea92..c29ae38d 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Specify your [API Key, site subdomain, private key](https://app.recurly.com/go/d Add the Recurly project from the Library folder to your solution and reference it in the projects that will make calls to the Recurly service. ## Example usage -To create a new Recurly account with `account code` and `name`: +To create an account with `account code` and `name`: ```c# var account = new Account("123") @@ -52,17 +52,17 @@ var account = new Account("123") account.Create(); ``` -To get a Recurly account with `account code` "123": +Get the account with `account code` 123: ```c# var account = Accounts.Get("123"); ``` -List all available accounts and print their `account codes`: +List all available `Accounts` and print their `account codes`: ```c# var accounts = Accounts.List(); -foreach(var account in accounts) +foreach (var account in accounts) Console.WriteLine(account.AccountCode); ```