Skip to content

Commit e5f1906

Browse files
Fix broken links: automation URL and Ask Fern footer links (#4434)
1 parent 88c0afe commit e5f1906

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

fern/components/FernFooter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ export default function FernFooter() {
440440
<div className="fern-cf-column-links">
441441
<a href="/learn/sdks/overview/introduction" className="fern-cf-link">SDKs</a>
442442
<a href="/learn/docs/getting-started/overview" className="fern-cf-link">Docs</a>
443-
<a href="/learn/ask-fern" className="fern-cf-link">Ask Fern</a>
443+
<a href="/learn/docs/ai-features/ask-fern/overview" className="fern-cf-link">Ask Fern</a>
444444
<a href="/learn/cli-api-reference/cli-reference/overview" className="fern-cf-link">CLI Reference</a>
445445
</div>
446446
</div>

fern/products/api-def/pages/project-structure.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ For the other specification formats ([OpenAPI](/api-definitions/openapi/overview
7070
There are three common ways to manage your API definition:
7171

7272
- **Commit directly into your Fern repository (recommended).** Check your API definition file into the same repository that contains your Fern configuration. This is the simplest approach if you don't maintain the definition elsewhere.
73-
- **Sync from a source code repository.** Store your API definition in the same repo as your API source code and sync updates into your Fern repository. You can automate this with the [`fern api update`](/cli-api-reference/cli-reference/commands#fern-api-update) CLI command or the [sync-openapi GitHub Action](/api-definitions/openapi/automation).
73+
- **Sync from a source code repository.** Store your API definition in the same repo as your API source code and sync updates into your Fern repository. You can automate this with the [`fern api update`](/cli-api-reference/cli-reference/commands#fern-api-update) CLI command or the [sync-openapi GitHub Action](/learn/api-definitions/openapi/sync-your-open-api-specification).
7474
- **Host at a public URL.** Serve the definition from a publicly accessible endpoint and configure the [`origin`](/learn/sdks/reference/generators-yml#openapi) field in `generators.yml` so Fern can fetch it. This is useful when you want a single canonical definition that multiple consumers can reference.
7575

7676
## Multiple APIs

footer/src/FernFooter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export const FernFooter: React.FC = () => {
298298
<div className="footer-column-links">
299299
<a href="/learn/sdks/overview/introduction" className="footer-link">SDKs</a>
300300
<a href="/learn/docs/getting-started/overview" className="footer-link">Docs</a>
301-
<a href="/learn/ask-fern" className="footer-link">Ask Fern</a>
301+
<a href="/learn/docs/ai-features/ask-fern/overview" className="footer-link">Ask Fern</a>
302302
<a href="/learn/cli-api-reference/cli-reference/overview" className="footer-link">CLI Reference</a>
303303
</div>
304304
</div>

0 commit comments

Comments
 (0)