Skip to content

Commit 5916844

Browse files
committed
fix-readme
1 parent ef19e0b commit 5916844

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/developer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ SCALASQL_RUN_BENCHMARK=5000 ./mill -i -w __.test scalasql.sqlite.SubQueryTests.d
2626
* ScalaSql comprises 4 main submodules:
2727
* `scalasql.core`: the core functionality of evaluating `SqlStr` queries, but without any typed
2828
helpers to construct them
29-
* `scalasql.operations`: extension methods on `Sql[T]` values representing operations on typed
29+
* `scalasql.operations`: extension methods on `Expr[T]` values representing operations on typed
3030
SQL expressions, like `LOWER(str)` or `a || b`/`CONCAT(a, b)`
3131
* `scalasql.query`: builders for entire SQL queries, `INSERT`, `SELECT`, `UPDATE`, `DELETE`.
3232
* `scalasql`: the main user-facing ScalaSql module, contains the `package object` defining

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ ivy"com.lihaoyi::scalasql:0.1.0"
105105
* [Returning](docs/reference.md#returning), [On Conflict](docs/reference.md#onconflict):
106106
covering these modifiers on `INSERT` and `UPDATE` for the databases that support them
107107
* [Expression Operations](docs/reference.md#exprops), covering the different
108-
types of `Sql[T]` values and the different operations you can do on each one
109-
* [Option Operations](docs/reference.md#optional), operations on `Sql[Option[T]`
108+
types of `Expr[T]` values and the different operations you can do on each one
109+
* [Option Operations](docs/reference.md#optional), operations on `Expr[Option[T]`
110110
* [Window Functions](docs/reference.md#windowfunctions),
111111
[With-Clauses/Common-Table-Expressions](docs/reference.md#withcte)
112112
* [Postgres](docs/reference.md#postgresdialect), [MySql](docs/reference.md#mysqldialect),

0 commit comments

Comments
 (0)