From 60dfa31a67601f25a3ca171ae7d2503a46e0ec03 Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Mon, 14 May 2018 11:00:52 -0400 Subject: Misc. typos found via `codespell` and `grep` --- Examples/go/director/director.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Examples/go') diff --git a/Examples/go/director/director.go b/Examples/go/director/director.go index 4f99bfc6d..c70606af1 100644 --- a/Examples/go/director/director.go +++ b/Examples/go/director/director.go @@ -32,7 +32,7 @@ type overwrittenMethodsOnFooBarAbstract struct { fb FooBarAbstract // If additional constructor arguments have been given they are typically - // stored here so that the overriden methods can use them. + // stored here so that the overridden methods can use them. } func (om *overwrittenMethodsOnFooBarAbstract) Foo() string { @@ -59,7 +59,7 @@ func NewFooBarGo() FooBarGo { // The memory of the FooBarAbstract director object instance can be // automatically freed once the FooBarGo instance is garbage collected by // uncommenting the following line. Please make sure to understand the - // runtime.SetFinalizer specific gotchas before doing this. Furthemore + // runtime.SetFinalizer specific gotchas before doing this. Furthermore // DeleteFooBarGo should be deleted if a finalizer is in use or the fooBarGo // struct needs additional data to prevent double deletion. // runtime.SetFinalizer(fbgs, FooBarGo.deleteFooBarAbstract) -- cgit v1.2.1