From a7cea2ea14f23fb0cbc63ef2d4423cfc4267466d Mon Sep 17 00:00:00 2001
From: Brian Tiger Chow <brian.holderchow@gmail.com>
Date: Fri, 6 Feb 2015 10:49:52 -0700
Subject: [PATCH] style(routing/supernode/client) fix indent

---
 routing/supernode/proxy/standard.go | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/routing/supernode/proxy/standard.go b/routing/supernode/proxy/standard.go
index 1a095cd64..999029e9f 100644
--- a/routing/supernode/proxy/standard.go
+++ b/routing/supernode/proxy/standard.go
@@ -34,11 +34,11 @@ func Standard(h host.Host, remotes []peer.PeerInfo) Proxy {
 }
 
 func (px *standard) Bootstrap(ctx context.Context) error {
-		for _, info := range px.Remotes {
-			if err := px.Host.Connect(ctx, info); err != nil {
-				return err // TODO
-			}
+	for _, info := range px.Remotes {
+		if err := px.Host.Connect(ctx, info); err != nil {
+			return err // TODO
 		}
+	}
 	return nil
 }
 
-- 
GitLab