From 857839b2412f9bf87729b88b3d198fc1c22fba05 Mon Sep 17 00:00:00 2001 From: Gustav Simonsson Date: Thu, 30 Jun 2016 13:11:37 +0200 Subject: [PATCH] eth: fix spelling in DAO hard fork code comments --- eth/dao_hard_fork.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/dao_hard_fork.go b/eth/dao_hard_fork.go index cc1efe36ac..b5f42b5d60 100644 --- a/eth/dao_hard_fork.go +++ b/eth/dao_hard_fork.go @@ -96,7 +96,7 @@ func prepareHardForkData(eth *Ethereum) (*DAOHardForkData, error) { return nil, err } - // create list of "The DAO" and all it's children, recursively + // create list of "The DAO" and all its children, recursively daos, err := traverseDAOs(theDAO, eth) if err != nil { return nil, err @@ -145,7 +145,7 @@ func traverseDAOs(d *dao.DAO, eth *Ethereum) ([]*dao.DAO, error) { glog.V(logger.Info).Infof("could not instantiate childDAO: %x %v", childAddr, err) return nil, err } - // append this child, then all it's children (recursively) + // append this child, then all its children (recursively) daos = append(daos, childDAO) children, err := traverseDAOs(childDAO, eth) if err != nil {