Skip to content

Commit 7770255

Browse files
Fix typos
1 parent 29f0167 commit 7770255

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/app/pokedex/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ export default function PokemonAPI() {
3030
/>
3131
<CodeView
3232
endpoint={`GET /api/pokemon/charizard`}
33-
code={`fetch("https://pokedex.mimo.dev/api/pokemon/charizard"
34-
.then((res) => res.json())
35-
.then((json) => console.log(json))
36-
.catch((error) => console.error(error))`}
33+
code={`fetch("https://pokedex.mimo.dev/api/pokemon/charizard")
34+
.then((res) => res.json())
35+
.then((json) => console.log(json))
36+
.catch((error) => console.error(error))`}
3737
/>
38-
<h2 className="text-3xl font-semibold mt-8 mb-2">Example Respond</h2>
38+
<h2 className="text-3xl font-semibold mt-8 mb-2">Example Response</h2>
3939
<ResponseView endpoint={`GET /api/pokemon/charizard`} />
4040
</section>
4141
</main>

0 commit comments

Comments
 (0)