Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
docs: fix ephemeral resources link
  • Loading branch information
denbeigh2000 committed Sep 18, 2022
commit 39f47ae780faa149b10f26125e6c231bcc0382e9
4 changes: 2 additions & 2 deletions docs/workspaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ update](./templates.md#manage-templates) available.

Resources are often destroyed and re-created when a workspace is restarted,
though the exact behavior depends on the template's definitions. For more
information, see [persistent and ephemeral
resources](./templates.md#persistent-and-ephemeral-resources).
information, see [persistent vs. ephemeral
resources](./templates.md#persistent-vs-ephemeral-resources).

> ⚠️ To avoid data loss, refer to your template documentation for information on
> where to store files, install software, etc., so that they persist. Default
Expand Down
4 changes: 2 additions & 2 deletions site/src/components/Tooltips/ResourcesHelpTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const Language = {
resourceTooltipTitle: "What is a resource?",
resourceTooltipText:
"A resource is an infrastructure object that is created when the workspace is provisioned.",
resourceTooltipLink: "Persistent and ephemeral resources",
resourceTooltipLink: "Persistent vs. ephemeral resources",
}

export const ResourcesHelpTooltip: React.FC = () => {
Expand All @@ -19,7 +19,7 @@ export const ResourcesHelpTooltip: React.FC = () => {
<HelpTooltipTitle>{Language.resourceTooltipTitle}</HelpTooltipTitle>
<HelpTooltipText>{Language.resourceTooltipText}</HelpTooltipText>
<HelpTooltipLinksGroup>
<HelpTooltipLink href="https://coder.com/docs/coder-oss/latest/templates#persistent-and-ephemeral-resources">
<HelpTooltipLink href="https://coder.com/docs/coder-oss/latest/templates#persistent-vs-ephemeral-resources">
{Language.resourceTooltipLink}
</HelpTooltipLink>
</HelpTooltipLinksGroup>
Expand Down