From 6f7f7065d35daafa1fd6f14e229de05e9e4f628a Mon Sep 17 00:00:00 2001 From: Evan Surdam Date: Mon, 10 Sep 2018 00:41:11 -0700 Subject: [PATCH] Update Line anchors --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 27eb35e..3d74090 100644 --- a/README.md +++ b/README.md @@ -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" @@ -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" @@ -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"