From ecd43175d8b0ce3548860e524b1fd9df1573d4e9 Mon Sep 17 00:00:00 2001 From: Chet Luther Date: Wed, 26 Feb 2020 10:25:21 -0500 Subject: [PATCH] update example line number references --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bf28c87..2694175 100644 --- a/README.md +++ b/README.md @@ -42,13 +42,13 @@ The lib provides 3 ways of constructing a query. 3. Struct Literal #### 1. Method Chaining -See [example/three_ways_to_construct_query_test.go#L10-L43](example/three_ways_to_construct_query_test.go#L10-L43) +See [example/three_ways_to_construct_query_test.go#L10-L54](example/three_ways_to_construct_query_test.go#L10-L43) #### 2. Functional Options -See [example/three_ways_to_construct_query_test.go#L45-L74](example/three_ways_to_construct_query_test.go#L45-L74) +See [example/three_ways_to_construct_query_test.go#L56-L85](example/three_ways_to_construct_query_test.go#L45-L74) #### 3. Struct Literal -See [example/three_ways_to_construct_query_test.go#L76-L100](example/three_ways_to_construct_query_test.go#L76-L100) +See [example/three_ways_to_construct_query_test.go#L87-L111](example/three_ways_to_construct_query_test.go#L76-L100) ### Words from the author __The library catches cycles.__ That is, if you have a `Field` whose sub Fields can reach the `Field` itself, the library reports an error.