fix typo in page links

This commit is contained in:
Hanjun Kim 2019-06-24 23:49:11 +09:00 committed by GitHub
parent 91408d1ed8
commit 5a56d4ee15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,13 +27,13 @@ I'd like to take a few sentences to clarify my stance on `gofmt` because there a
* [Variable Declaration](#Variable-Declaration)
* [Clean Go](#Clean-Go)
* [Return Values](#Return-lValues)
* [Return Values](#Return-Values)
* [Returning Defined Errors](#Returning-Defined-Errors)
* [Returning Dynamic Errors](#Returning-Dynamic-Errors)
* [Pointers in Go](#Pointers-in-Go)
* [Closures are Function Pointers](#Closures-are-Function-Pointers)
* [Interfaces in Go](#Interfaces-in-Go)
* [The empty `interface{}`](#The-empty-`interface{}`)
* [The empty `interface{}`](#The-Empty-interface)
* [Summary](#Summary)
## Introduction to Clean Code