From 5a56d4ee153d2171dddae0f4e221b494aa17a058 Mon Sep 17 00:00:00 2001 From: Hanjun Kim Date: Mon, 24 Jun 2019 23:49:11 +0900 Subject: [PATCH] fix typo in page links --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3e75e54..148480e 100644 --- a/README.md +++ b/README.md @@ -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