Skip to content

Commit

Permalink
Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
ydnar committed Jul 4, 2015
1 parent e42a545 commit eae726a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
EPP ([Extensible Provisioning Protocol](https://tools.ietf.org/html/rfc5730)) client for
[Go](https://golang.org/). Extracted from and in production use at [Domainr](https://domainr.com/).

**Note:** This library is currently under development, and its interface is subject to breaking changes at any time.
**Note:** This library is currently under development. Its API is subject to breaking changes at any time.

## Installation

Expand All @@ -30,11 +30,11 @@ if err != nil {
return err
}

dc, err := conn.CheckDomain("google.com")
dcr, err := conn.CheckDomain("google.com")
if err != nil {
return err
}
for _, r := range dc.Results {
for _, r := range dcr.Checks {
// ...
}
```
Expand Down

0 comments on commit eae726a

Please sign in to comment.