From 51e1843f4b94487b019cba37c814363bb8a81501 Mon Sep 17 00:00:00 2001
From: faiface <faiface@ksp.sk>
Date: Wed, 24 May 2017 02:21:25 +0200
Subject: [PATCH] remove debug print from typewriter example

---
 examples/typewriter/main.go | 2 --
 1 file changed, 2 deletions(-)

diff --git a/examples/typewriter/main.go b/examples/typewriter/main.go
index eb36cbd..ded0918 100644
--- a/examples/typewriter/main.go
+++ b/examples/typewriter/main.go
@@ -1,7 +1,6 @@
 package main
 
 import (
-	"fmt"
 	"image/color"
 	"math"
 	"math/rand"
@@ -150,7 +149,6 @@ func shake(tw *typewriter, intensity, friction float64) {
 		intensity -= friction * dt
 
 		tw.Offset(off)
-		fmt.Println(off)
 	}
 }
 
-- 
GitLab