Fixed markdown in Regex section (#31)

This commit is contained in:
DestroyerBDT 2024-06-03 03:58:03 +05:30 committed by GitHub
parent 2417d977f7
commit 6aa22b5088
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -150,7 +150,7 @@ fun main() {
## **Regex:**
When working with Regex I highly recommend using (regex101.com)[https://regex101.com/] (using the python flavor)
When working with Regex I highly recommend using [regex101.com](https://regex101.com/) (using the python flavor)
Press <kbd>Ctrl</kbd> + <kbd>U</kbd>
@ -219,4 +219,4 @@ fun main() {
val description = descriptionRegex.find(response.text)?.groups?.get(1)?.value
println(description)
}
```
```