Skip to content

Commit

Permalink
fix typo in 'İStek' and 'İtek' to 'İstek' (expressjs#1575)
Browse files Browse the repository at this point in the history
  • Loading branch information
erensarac authored and Chris Del committed Nov 3, 2024
1 parent 04735a0 commit 0ac9ed2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tr/guide/routing.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ Rota parametreleri, URL'deki konumlarında belirtilen değerleri yakalamak için

```
Rota yolu: /users/:userId/books/:bookId
İStek URL'i: http://localhost:3000/users/34/books/8989
İstek URL'i: http://localhost:3000/users/34/books/8989
req.params: { "userId": "34", "bookId": "8989" }
```

Expand All @@ -184,7 +184,7 @@ Tire (`-`) ve nokta (`.`) oldukları gibi değerlendirildikleri için, kullanı

```
Rota yolu: /flights/:from-:to
İtek URL'i: http://localhost:3000/flights/LAX-SFO
İstek URL'i: http://localhost:3000/flights/LAX-SFO
req.params: { "from": "LAX", "to": "SFO" }
```

Expand Down

0 comments on commit 0ac9ed2

Please sign in to comment.