Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/docs/query-builder/operators.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 5
description: Common operators accross dialects
description: Common operators across dialects
---

# Operators
Expand Down
2 changes: 1 addition & 1 deletion website/docs/query-builder/starters.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_position: 4.5
description: Common starters accross dialects
description: Common starters across dialects
---

# Starters
Expand Down
2 changes: 1 addition & 1 deletion website/vs/sqlboiler.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Bob's new foundation made it possible to do many things SQLBoiler cannot since B
* **SQLBoiler**: The same query mods are used every where, making it possible to craft invalid queries where a mod is used on the wrong query type (e.g. JOINS on a DELETE query)
* **Bob**: Each query type has its own mods, making it impossible to craft an invalid query.
* Dialect Support:
* **SQLBoiler**: Since every feature has to work accross all dialects, it is difficult to support the full range of a dialect or add new dialects.
* **SQLBoiler**: Since every feature has to work across all dialects, it is difficult to support the full range of a dialect or add new dialects.
* **Bob**: Since every query and its mods are independent of each other, Bob can support the full range of capabilities of any dialect, and add new dialects without being concerned about the existing ones.
* Building Custom SQL:
* **SQLBoiler**: Outside of using the generated code, the user has to manage SQL building by hand which can involve a lot of manual string manipulation.
Expand Down