Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed typo in module instructions #164

Merged
merged 1 commit into from
Sep 4, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function Block({ children }: { children: ReactNode }) {
return (
<SidebarBlock title="Provision instructions">
abstractionfactory marked this conversation as resolved.
Show resolved Hide resolved
<Paragraph className="my-4">
Copy this code info your OpenTofu configuration and add any variables
Copy this code into your OpenTofu configuration and add any variables
necessary, then run{" "}
<code className="text-sm text-purple-700 dark:text-purple-300">
tofu init
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ function Block({ children }: { children: ReactNode }) {
return (
<SidebarBlock title="How to use this provider">
<Paragraph className="my-4">
Copy this code info your OpenTofu configuration and run run{" "}
Copy this code into your OpenTofu configuration and run run{" "}
<code className="text-sm text-purple-700 dark:text-purple-300">
tofu init
</code>
{" "}to install this provider.
</code>{" "}
to install this provider.
</Paragraph>
{children}
</SidebarBlock>
Expand Down
Loading