Skip to content

Commit

Permalink
Update Line anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
esurdam committed Sep 10, 2018
1 parent c7d09bc commit 6f7f706
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 @@ -97,7 +97,7 @@ nodes.LicensingActiveIps

Each file in the [objects](api/v1.3.0/objects) dir represents an [Endpoint](nodes.go#L7) generated from a [Definition](definition.go) and contains its generated Objects.

Objects implement the [RestObject](nodes.go) interface:
Objects implement the [RestObject](nodes.go#L46) interface:

```go
import "github.com/esurdam/go-sophos/api/v1.3.0/objects"
Expand All @@ -106,7 +106,7 @@ var dns objects.Dns
err := client.GetObject(&dns)
```

Notice that some objects are pluralized and only implement the [RestGetter](nodes.go) interface:
Notice that some objects are pluralized and only implement the [RestGetter](nodes.go#L56) interface:
```go
import "github.com/esurdam/go-sophos/api/v1.3.0/objects"

Expand All @@ -123,7 +123,7 @@ for _, s := range ss {
}
```

Note that [Endpoint](nodes.go#L5) types contain their [Definition](definition.go#L3):
Note that [Endpoint](nodes.go#L2) types contain their [Definition](definition.go#L3):

```go
import "github.com/esurdam/go-sophos/api/v1.3.0/objects"
Expand Down

0 comments on commit 6f7f706

Please sign in to comment.