-
Notifications
You must be signed in to change notification settings - Fork 28.6k
Fix typos in documentation files #80344
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
Closed
Closed
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
a455a85
Fix typos in documentation files
atsushi196323 c1da2ed
Revert incorrect change to %5FfolderName
atsushi196323 81c7743
Fix typos in documentation files
atsushi196323 b829b98
[turbopack] Remove the `_for_input` options from `turbo_tasks::value`…
lukesandberg a2166e0
Docs: Add rspack community collab (#80217)
icyJoseph 057f8fd
[dev-overlay] Publish as production bundle (#80295)
eps1lon 0ea81b4
chore(turbopack/ci): Make codspeed stable (#80323)
kdy1 0a07743
[metadata] only serve block streaming metadata for html bots (#80272)
huozhi a071cad
v15.4.0-canary.73
vercel-release-bot 91dd855
[test] separate tracing error test from action test suite (#80324)
huozhi 1b3e59b
chore(next-swc-napi): Update tracing-chrome crate to 0.7.2 (#80331)
bgw 0bf6fd5
Update font data (#80301)
vercel-release-bot a941c66
[turbopack] optimize the TurboMalloc threadlocals (#80265)
lukesandberg 9375162
[test] Only run build_and_deploy once for PRs from upstream (#80329)
eps1lon 66cfb7c
v15.4.0-canary.74
vercel-release-bot 9a3c73a
Merge branch 'canary' into fix-docs-typos
atsushi196323 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -296,7 +296,7 @@ However, disabling prefetching comes with trade-offs: | |||||||||
- **Static routes** will only be fetched when the user clicks the link. | ||||||||||
- **Dynamic routes** will need to be rendered on the server first before the client can navigate to it. | ||||||||||
|
||||||||||
To reduce resouce usage without fully disabling prefetch, you can prefetch only on hover. This limits prefetching to routes the user is more _likely_ to visit, rather all links in the viewport. | ||||||||||
To reduce resource usage without fully disabling prefetch, you can prefetch only on hover. This limits prefetching to routes the user is more _likely_ to visit, rather all links in the viewport. | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There appears to be a missing word in this sentence. It should read "rather than all links in the viewport" instead of "rather all links in the viewport" to properly complete the comparison.
Suggested change
Spotted by Diamond |
||||||||||
|
||||||||||
```tsx filename="app/ui/hover-prefetch-link.tsx" switcher | ||||||||||
'use client' | ||||||||||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The change from
%5FfolderName
to%5FolderName
doesn't match the PR description which mentions fixing "Ffolder" to "Folder". Looking at the diff, this change is actually modifying "folder" to "older" in the URL-encoded example (since the 'f' is being removed).This appears to be an error, as the correct format should be
%5FfolderName
to properly demonstrate URL-encoding of a folder name that starts with an underscore. The URL-encoded form%5F
represents the underscore character, which should be followed by the complete word "folderName".GitHub: Markdown
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.