fix: readme file with the correct link

+ Updates the readme file with the correct link for `2. Naked Expressions` exercise
+ Improves the readability
This commit is contained in:
Anand Prabhu
2019-01-17 00:14:29 +04:00
committed by Inanc Gumus
parent 1faf749b1e
commit f7ada03770
2 changed files with 10 additions and 12 deletions

View File

@ -1,10 +1,8 @@
// ---------------------------------------------------------
// EXERCISE
// 1- Print the documentation of runtime.NumCPU function
// in the command line
//
// 2- Print also its source code using in the command line
//
// HINT
// You should use correct go doc tools
// ---------------------------------------------------------
## EXERCISE
- Print the documentation of `runtime.NumCPU` function in the command line
- Print also its source code using in the command line
## HINT
You should use correct `go doc` tools

View File

@ -2,7 +2,7 @@
Observe how Go fixes semicolons for you.
2. **[Naked Expression](https://github.com/inancgumus/learngo/tree/master/04-statements-expressions-comments/exercises/01-shy-semicolons)**
2. **[Naked Expression](https://github.com/inancgumus/learngo/tree/master/04-statements-expressions-comments/exercises/02-naked-expression)**
Observe what happens when you use an expression without a statement.