From 9cff5a3d31c8ac195bfd8f46ae830ec66dc51c52 Mon Sep 17 00:00:00 2001 From: Ruslan Bredikhin Date: Fri, 8 May 2015 14:30:32 -0400 Subject: [PATCH] Fix a tautology / typo --- en/02.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02.5.md b/en/02.5.md index c187beb6..cc50b8af 100644 --- a/en/02.5.md +++ b/en/02.5.md @@ -1,6 +1,6 @@ # Object-oriented -We talked about functions and structs in the last two sections, but did you ever consider using functions as fields of a struct? In this section, I will introduce you to another form of method that has a receiver, which is called `method`. +We talked about functions and structs in the last two sections, but did you ever consider using functions as fields of a struct? In this section, I will introduce you to another form of function that has a receiver, which is called `method`. ## method