Skip to content

Commit

Permalink
corrected typo, simpler solution for an exercise
Browse files Browse the repository at this point in the history
  • Loading branch information
learnbyexample committed Aug 15, 2023
1 parent b2b3fc9 commit 15d582c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ For the web version of the book, visit https://learnbyexample.github.io/learn_gn

⚠️ ⚠️ Please DO NOT submit pull requests. Main reason being any modification requires changes in multiple places.

I would highly appreciate if you'd let me know how you felt about this book. It could be anything from a simple thank you, pointing out a typo, mistakes in code snippets, which aspects of the book worked for you (or didn't!) and so on. Reader feedback is essential and especially so for self-published authors.
I would highly appreciate it if you'd let me know how you felt about this book. It could be anything from a simple thank you, pointing out a typo, mistakes in code snippets, which aspects of the book worked for you (or didn't!) and so on. Reader feedback is essential and especially so for self-published authors.

You can reach me via:

Expand Down
2 changes: 1 addition & 1 deletion exercises/Exercise_solutions.md
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ $ echo "$s" | sed -E 's/\b([0-9]+)\1+\b/\1/g'
```bash
$ ip='wow:Good:2_two.five: hi-2 bye kite.777:water.'
$ echo "$ip" | sed -E 's/(\w+)[:.](\w+[:.])+/\1/g'
$ echo "$ip" | sed -E 's/([:.]\w*)+//g'
wow hi-2 bye kite
```
Expand Down

0 comments on commit 15d582c

Please sign in to comment.