diff --git a/docs/guide/index.md b/docs/guide/index.md index 0db2c8c..01cd5a5 100644 --- a/docs/guide/index.md +++ b/docs/guide/index.md @@ -93,7 +93,7 @@ widget.addEventListener("solve", function (e) { Alternatively, you can wrap the widget in a `
` 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 diff --git a/docs/guide/standalone/options.md b/docs/guide/standalone/options.md index a598d89..bd5cda7 100644 --- a/docs/guide/standalone/options.md +++ b/docs/guide/standalone/options.md @@ -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` diff --git a/docs/guide/workings.md b/docs/guide/workings.md index 5c2b06d..db4117d 100644 --- a/docs/guide/workings.md +++ b/docs/guide/workings.md @@ -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.