Skip to content

Commit

Permalink
Fix minor typos in the "Matching generally static values" FAQ example (
Browse files Browse the repository at this point in the history
  • Loading branch information
jmargeta committed Dec 31, 2021
1 parent 1cf5f7e commit 48b7c60
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions contributors.yml
Expand Up @@ -5,6 +5,7 @@
- elylucas
- hongji00
- JakubDrozd
- jmargeta
- jonkoops
- kantuni
- kddnewton
Expand Down
6 changes: 3 additions & 3 deletions docs/faq.md
Expand Up @@ -296,9 +296,9 @@ These are all actually just static paths, so in v6 you can make three routes and
function App() {
return (
<Routes>
<Route path="en" element={<Lang code="en" />} />
<Route path="es" element={<Lang code="en" />} />
<Route path="fr" element={<Lang code="en" />} />
<Route path="en" element={<Lang lang="en" />} />
<Route path="es" element={<Lang lang="es" />} />
<Route path="fr" element={<Lang lang="fr" />} />
</Routes>
);
}
Expand Down

0 comments on commit 48b7c60

Please sign in to comment.