Skip to content
Open
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
2 changes: 1 addition & 1 deletion docs/router/guide/data-loading.md
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ export const Route = createFileRoute('/posts')({
import { routeTree } from './routeTree.gen'

// Use your routerContext to create a new router
// This will require that you fullfil the type requirements of the routerContext
// This will require that you fulfill the type requirements of the routerContext
const router = createRouter({
routeTree,
context: {
Expand Down
2 changes: 1 addition & 1 deletion docs/router/guide/type-utilities.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: type-utilities
title: Type Utilities
---

Most types exposed by TanStack Router are internal, subject to breaking changes and not always easy to use. That is why TanStack Router has a subset of exposed types focused on ease of use with the intension to be used externally. These types provide the same type safe experience from TanStack Router's runtime concepts on the type level, with flexibility of where to provide type checking
Most types exposed by TanStack Router are internal, subject to breaking changes and not always easy to use. That is why TanStack Router has a subset of exposed types focused on ease of use with the intention to be used externally. These types provide the same type safe experience from TanStack Router's runtime concepts on the type level, with flexibility of where to provide type checking

## Type checking Link options with `ValidateLinkOptions`

Expand Down
2 changes: 1 addition & 1 deletion docs/router/how-to/use-environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ Pass variables from the server down to the client:

**Example**:

You may use your prefered backend framework/libray, but here it is using Tanstack Start server functions:
You may use your preferred backend framework/library, but here it is using Tanstack Start server functions:

```tsx
const getRuntimeVar = createServerFn({ method: 'GET' }).handler(() => {
Expand Down