diff --git a/README.md b/README.md index c55e1b1..85b5100 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ type Person struct { } } -// Get first result into a struct. +// Get the first result into a struct. { stmt, names := qb.Select("gocqlx_test.person"). Where(qb.Eq("first_name")). @@ -67,7 +67,7 @@ type Person struct { // {Patricia Citizen [patricia.citzen@gocqlx_test.com patricia1.citzen@gocqlx_test.com]} } -// Select, load all results into a slice. +// Select, load all the results into a slice. { stmt, names := qb.Select("gocqlx_test.person"). Where(qb.In("first_name")). diff --git a/example_test.go b/example_test.go index e55e417..f2ef81b 100644 --- a/example_test.go +++ b/example_test.go @@ -117,7 +117,7 @@ func TestExample(t *testing.T) { } } - // Get first result into a struct. + // Get the first result into a struct. { stmt, names := qb.Select("gocqlx_test.person"). Where(qb.Eq("first_name")). @@ -136,7 +136,7 @@ func TestExample(t *testing.T) { // {Patricia Citizen [patricia.citzen@gocqlx_test.com patricia1.citzen@gocqlx_test.com]} } - // Select, load all results into a slice. + // Select, load all the results into a slice. { stmt, names := qb.Select("gocqlx_test.person"). Where(qb.In("first_name")).