From fc2b32d91965404c2479aa3d1be904b5a4c217f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vin=C3=ADcius=20Garcia?= Date: Wed, 28 Sep 2022 21:04:15 -0300 Subject: [PATCH] Remove mention to old name KissSQL --- README.md | 2 +- adapters/kmysql/kmysql.go | 2 +- adapters/ksqlite3/ksqlite3.go | 2 +- adapters/ksqlserver/ksqlserver.go | 2 +- examples/crud/crud.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index be53195..28feaf5 100644 --- a/README.md +++ b/README.md @@ -309,7 +309,7 @@ func main() { }) if err != nil { // This will also cause an automatic rollback and then panic again - // so that we don't hide the panic inside the KissSQL library + // so that we don't hide the panic inside the KSQL library panic(err.Error()) } diff --git a/adapters/kmysql/kmysql.go b/adapters/kmysql/kmysql.go index 1419411..8241d19 100644 --- a/adapters/kmysql/kmysql.go +++ b/adapters/kmysql/kmysql.go @@ -16,7 +16,7 @@ func NewFromSQLDB(db *sql.DB) (ksql.DB, error) { return ksql.NewWithAdapter(NewSQLAdapter(db), "mysql") } -// New instantiates a new KissSQL client using the "mysql" driver +// New instantiates a new KSQL client using the "mysql" driver func New( _ context.Context, connectionString string, diff --git a/adapters/ksqlite3/ksqlite3.go b/adapters/ksqlite3/ksqlite3.go index a545e2a..4850654 100644 --- a/adapters/ksqlite3/ksqlite3.go +++ b/adapters/ksqlite3/ksqlite3.go @@ -16,7 +16,7 @@ func NewFromSQLDB(db *sql.DB) (ksql.DB, error) { return ksql.NewWithAdapter(NewSQLAdapter(db), "sqlite3") } -// New instantiates a new KissSQL client using the "sqlite3" driver +// New instantiates a new KSQL client using the "sqlite3" driver func New( _ context.Context, connectionString string, diff --git a/adapters/ksqlserver/ksqlserver.go b/adapters/ksqlserver/ksqlserver.go index 6999df2..94dd775 100644 --- a/adapters/ksqlserver/ksqlserver.go +++ b/adapters/ksqlserver/ksqlserver.go @@ -16,7 +16,7 @@ func NewFromSQLDB(db *sql.DB) (ksql.DB, error) { return ksql.NewWithAdapter(NewSQLAdapter(db), "sqlserver") } -// New instantiates a new KissSQL client using the "sqlserver" driver +// New instantiates a new KSQL client using the "sqlserver" driver func New( _ context.Context, connectionString string, diff --git a/examples/crud/crud.go b/examples/crud/crud.go index 6ea244b..ab84fbe 100644 --- a/examples/crud/crud.go +++ b/examples/crud/crud.go @@ -166,7 +166,7 @@ func main() { }) if err != nil { // This will also cause an automatic rollback and then panic again - // so that we don't hide the panic inside the KissSQL library + // so that we don't hide the panic inside the KSQL library panic(err.Error()) }