Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Heckmann committed Mar 1, 2014
1 parent 8a44a31 commit 4d00c6e
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 @@ -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")
Expand All @@ -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);
```

Expand Down

0 comments on commit 4d00c6e

Please sign in to comment.