docs: fix typos

This commit is contained in:
tiago
2026-03-02 20:09:55 +00:00
parent 923de58e43
commit 41d6529c7b
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ widget.addEventListener("solve", function (e) {
Alternatively, you can wrap the widget in a `<form></form>` and Cap will automatically submit the token alongside other form data as `cap-token`.
You can also use get a token programmatically without displaying the widget by using the [programmatic mode](./programmatic.md).
You can also get a token programmatically without displaying the widget by using the [programmatic mode](./programmatic.md).
## 3. Verifying tokens
+1 -1
View File
@@ -53,7 +53,7 @@ If you would like the data to be stored in a custom path inside the container, y
If you would like to use a different database, you can set the `DB_URL` environment variable to the URL of the database you want to use.
We recommend keeping this to the default value, which is `sqlite://./.data/db.sqlite.`. However, using Postgres, MySQL, or any other database supported by Bun SQL might be possible, even though not officially supported or tested:
We recommend keeping this to the default value, which is `sqlite://./.data/db.sqlite`. However, using Postgres, MySQL, or any other database supported by Bun SQL might be possible, even though not officially supported or tested:
- `postgres://user:pass@localhost:5432/mydb`
- `mysql://user:password@localhost:3306/database`
+1 -1
View File
@@ -1,4 +1,4 @@
# How does cap work?
# How does Cap work?
By the way, this is a more technical explanation of how Cap works. If you're looking for a more general overview, check out the [Effectiveness](./effectiveness.md) page.