From 828fd65cfae14b04b0b5f6228c7715da14606937 Mon Sep 17 00:00:00 2001 From: Lasse Martin Jakobsen Date: Thu, 11 Jul 2019 10:16:50 +0200 Subject: [PATCH] added suggestions from issue #1 --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index b5ad653..39e7e24 100644 --- a/README.md +++ b/README.md @@ -1162,8 +1162,6 @@ func (metadata *Metadata) AddUpdateInfo(user types.User) { Again, without breaking the rest of our codebase, we've managed to introduce new functionality. This kind of programming makes implementing new features very quick and painless, which is exactly what we are trying to achieve by writing clean code. -// TODO : Rewrite this section to be more sober - Now, I am sorry to break this streak of happiness—it's time that we enter the smelly forbidden forest of Go. Let's revisit the original problem of our interfaces: Trying to explicitly show which interfaces are being implemented by a given structure. Instead of embedding a struct, we can embed an interface: ```go