Skip to content

Commit

Permalink
fix typo in "packages".
Browse files Browse the repository at this point in the history
  • Loading branch information
guettli committed Jan 17, 2024
1 parent 4054bf3 commit 3c7001d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion website/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Bob's philosophy centers around the following:

## 1. Query Builder

Bob can be used to build queries, this is similar to other pacakges like [squirrel](https://github.com/Masterminds/squirrel) and [goqu](https://github.com/doug-martin/goqu)
Bob can be used to build queries, this is similar to other packages like [squirrel](https://github.com/Masterminds/squirrel) and [goqu](https://github.com/doug-martin/goqu)

However, Bob strives to be fully spec compliant. As a result, you can build **almost any** query permitted by the dialect. And because the query builders are custom crafted for each dialect. You are almost unable to build an invalid query.

Expand Down
2 changes: 1 addition & 1 deletion website/docs/query-builder/mysql/how-to-use.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: Supported features

# How to Use

Import the `mysql` package and the query mod pacakges for the different query types
Import the `mysql` package and the query mod packages for the different query types

```go
import (
Expand Down
2 changes: 1 addition & 1 deletion website/docs/query-builder/psql/how-to-use.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: Supported features

# How to Use

Import the `psql` package and the query mod pacakges for the different query types
Import the `psql` package and the query mod packages for the different query types

```go
import (
Expand Down
2 changes: 1 addition & 1 deletion website/docs/query-builder/sqlite/how-to-use.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: Supported features

# How to Use

Import the `sqlite` package and the query mod pacakges for the different query types
Import the `sqlite` package and the query mod packages for the different query types

```go
import (
Expand Down
2 changes: 1 addition & 1 deletion website/vs/ent.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sidebar_position: 2

* **Ent** is code-first. The schema is defined in code and it then generates the entities using Ent-specific techniques. If you use a different tool for migration, you then have to manually ensure that your Ent schema is in sync with your database.

* **Bob** is database-first. You generate your database using the first class tools for your DB (SQL, pgAdmin, migration pacakges). And then generate your models from your database.
* **Bob** is database-first. You generate your database using the first class tools for your DB (SQL, pgAdmin, migration packages). And then generate your models from your database.

## Query Building

Expand Down
2 changes: 1 addition & 1 deletion website/vs/gorm.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sidebar_position: 1

* **GORM** is code-first. It generates the database from your code, using GORM-specific techniques. If you use a different tool for migration, you then have to manually ensure that your GORM models are in sync with your database.

* **Bob** is database-first. You generate your database using the first class tools for your DB (SQL, pgAdmin, migration pacakges). And then generate your models from your database.
* **Bob** is database-first. You generate your database using the first class tools for your DB (SQL, pgAdmin, migration packages). And then generate your models from your database.

## Type Safety

Expand Down

0 comments on commit 3c7001d

Please sign in to comment.