diff --git a/site/src/libs/astro.ts b/site/src/libs/astro.ts index 01b4f6b106..09555e7899 100644 --- a/site/src/libs/astro.ts +++ b/site/src/libs/astro.ts @@ -120,7 +120,7 @@ function bootstrap_auto_import() { const autoImportedComponentDefinition = `/** * DO NOT EDIT THIS FILE MANUALLY. * - * This file is automatically generated by the Boostrap Astro Integration. + * This file is automatically generated by the Bootstrap Astro Integration. * It contains the type definitions for the components that are auto imported in all pages. * @see site/src/libs/astro.ts */ diff --git a/site/src/libs/path.ts b/site/src/libs/path.ts index d1d32547b5..cbbbca2c90 100644 --- a/site/src/libs/path.ts +++ b/site/src/libs/path.ts @@ -25,8 +25,8 @@ export function getVersionedDocsPath(docsPath: string): string { // This is useful to catch typos in docs paths. // Note: this function is only called during a production build. // Note: this could at some point be refactored to use Astro list of generated `routes` accessible in the -// `astro:build:done` integration hook. Altho as of 03/14/2023, this is not possible due to the route's data only -// containing informations regarding the last page generated page for dynamic routes. +// `astro:build:done` integration hook. Although as of 03/14/2023, this is not possible due to the route's data only +// containing information regarding the last page generated page for dynamic routes. // @see https://github.com/withastro/astro/issues/5802 export function validateVersionedDocsPaths(distUrl: URL) { const { docs_version } = getConfig() diff --git a/site/src/libs/placeholder.ts b/site/src/libs/placeholder.ts index ef5da3e217..2096ac9870 100644 --- a/site/src/libs/placeholder.ts +++ b/site/src/libs/placeholder.ts @@ -215,13 +215,13 @@ export interface PlaceholderOptions { */ markup: 'img' | 'svg' /** - * The text to show in the image. You can explicitely pass the `false` boolean value (and not the string "false") to + * The text to show in the image. You can explicitly pass the `false` boolean value (and not the string "false") to * hide the text. * @default "${width}x{$height)" */ text: string | false /** - * Used in the SVG `title` tag. You can explicitely pass the `false` boolean value (and not the string "false") to + * Used in the SVG `title` tag. You can explicitly pass the `false` boolean value (and not the string "false") to * hide the title. * @default "Placeholder" */ diff --git a/site/src/libs/remark.ts b/site/src/libs/remark.ts index ab8129c05e..9d532be42d 100644 --- a/site/src/libs/remark.ts +++ b/site/src/libs/remark.ts @@ -56,7 +56,7 @@ export const remarkBsConfig: Plugin<[], Root> = function () { } } -// A remark plugin to add versionned docs links in markdown (or MDX) files. +// A remark plugin to add versioned docs links in markdown (or MDX) files. // For example, [[docsref:/foo]] will be replaced with the `/docs/${docs_version}/foo` value with the `docs_version` // value being read from the `config.yml` file. // Note: this also works in frontmatter.