diff --git a/README.md b/README.md index 96c8edb..9378f0a 100644 --- a/README.md +++ b/README.md @@ -828,7 +828,7 @@ PASS ok gopkg.in/src-d/go-kallax.v1/benchmarks 40.485s ``` -As we can see on the benchmark, the performance loss is not very much compared to raw `database/sql`, while GORMs performance loss is very big and the memory consumption is way higher. +As we can see on the benchmark, the performance loss is not very much compared to raw `database/sql`, while GORMs performance loss is very big and the memory consumption is way higher. SQLBoiler, on the other hand, has a lower memory footprint than kallax, but a bigger performance loss (though not very significant in most cases). Source code of the benchmarks can be found on the [benchmarks](https://github.com/src-d/go-kallax/tree/master/benchmarks) folder. diff --git a/generator/common_test.go b/generator/common_test.go index 0cf04f1..e71d9ec 100644 --- a/generator/common_test.go +++ b/generator/common_test.go @@ -7,7 +7,7 @@ import ( "go/types" "reflect" - parseutil "srcd.works/go-parse-utils.v1" + parseutil "gopkg.in/src-d/go-parse-utils.v1" ) func mkField(name, typ string, fields ...*Field) *Field {