From 2baaa085a7423bbfa1d2e7a90f7aa960010ee8e5 Mon Sep 17 00:00:00 2001 From: Anthony DePasquale Date: Thu, 10 Apr 2025 17:11:51 +0200 Subject: [PATCH] "set up" as verb --- docs/content/docs/guides/browser-extension-guide.mdx | 2 +- docs/content/docs/guides/your-first-plugin.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/docs/guides/browser-extension-guide.mdx b/docs/content/docs/guides/browser-extension-guide.mdx index 7b0f10d77f..0bd07e6778 100644 --- a/docs/content/docs/guides/browser-extension-guide.mdx +++ b/docs/content/docs/guides/browser-extension-guide.mdx @@ -108,7 +108,7 @@ If you would like to view a completed example, you can check out the ## You're now ready! - You have now setup BetterAuth for your browser extension. + You have now set up BetterAuth for your browser extension. Add your desired UI and create your dream extension! diff --git a/docs/content/docs/guides/your-first-plugin.mdx b/docs/content/docs/guides/your-first-plugin.mdx index 6367feaa5a..dbddaba269 100644 --- a/docs/content/docs/guides/your-first-plugin.mdx +++ b/docs/content/docs/guides/your-first-plugin.mdx @@ -86,7 +86,7 @@ export const birthdayPlugin = () => ### Authorization logic -For this example guide, we’ll setup authentication logic to check and ensure that the user who signs-up is older than 5. +For this example guide, we’ll set up authentication logic to check and ensure that the user who signs-up is older than 5. But the same concept could be applied for something like verifying users agreeing to the TOS or anything alike. To do this, we’ll utilize Hooks, which allows us to run code `before` or `after` an action is performed.