diff --git a/website/docs/database.mdx b/website/docs/database.mdx index e80a875..6f19620 100644 --- a/website/docs/database.mdx +++ b/website/docs/database.mdx @@ -127,7 +127,7 @@ export const hooks = { } ``` -:::tip[Ess-Cue-Ell-ize-d] +:::tip[Ess-Cue-Ell-ize] `@flecks/db` uses [Sequelize](https://sequelize.org/) under the hood. You can dive into [their documentation](https://sequelize.org/docs/v6/getting-started/) to learn even more. @@ -213,7 +213,7 @@ We're passing the path to our models directory to `require.context` which is the `Flecks.provide`. This is completely equivalent to our original code, but now we can add more models by adding individual files in `packages/content/src/models` and keep things tidy. -:::info[Gather some more knowledge] +:::info[Continue gathering knowledge] For a more detailed treatment of gathering and providing in flecks, see [the gathering guide](#todo). diff --git a/website/docs/environment.mdx b/website/docs/environment.mdx index 39a4d24..5a236f4 100644 --- a/website/docs/environment.mdx +++ b/website/docs/environment.mdx @@ -26,7 +26,7 @@ override configuration such as this. This is done by like so: `FLECKS_ENV__${Flecks.environmentalize(fleck)}__${key}` ``` -:::tip[Configure the application ID] +:::tip[How do you identify?] As an example, `@flecks/core`'s `id` key is set using the following variable: diff --git a/website/docs/testing.mdx b/website/docs/testing.mdx index 08b21c5..56f6082 100644 --- a/website/docs/testing.mdx +++ b/website/docs/testing.mdx @@ -1,6 +1,6 @@ --- title: Testing -description: flecks makes testing easy across platforms. +description: Easily test your code across platforms. --- # Testing