From fa57a41d2a7e4d621478f0efc082f8531615ac10 Mon Sep 17 00:00:00 2001
From: faiface <faiface@ksp.sk>
Date: Tue, 14 Mar 2017 13:20:26 +0100
Subject: [PATCH] make doc more readable

---
 geometry.go | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/geometry.go b/geometry.go
index 5dfd58c..3ac5543 100644
--- a/geometry.go
+++ b/geometry.go
@@ -186,9 +186,11 @@ func (r Rect) Moved(delta Vec) Rect {
 }
 
 // Resized returns the Rect resized to the given size while keeping the position of the given anchor.
+//
 //   r.Resized(r.Min, size)      // resizes while keeping the position of the lower-left corner
 //   r.Resized(r.Max, size)      // same with the top-right corner
 //   r.Resized(r.Center(), size) // resizes around the center
+//
 // This function does not make sense for size of zero area and will panic. Use ResizeMin in the case
 // of zero area.
 func (r Rect) Resized(anchor, size Vec) Rect {
-- 
GitLab