From c5781b0ba23098eddadea0ba2ee1b90ae2d5a6d3 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jos=C3=A9=20Carlos=20Nieto?= <xiam@menteslibres.org>
Date: Tue, 24 Jul 2012 06:11:34 -0500
Subject: [PATCH] Fixing typo.

---
 db/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/db/README.md b/db/README.md
index 6f1b88a4..a2fd11a8 100644
--- a/db/README.md
+++ b/db/README.md
@@ -6,7 +6,7 @@ This package is a wrapper of many third party database drivers. The goal of this
 
 Use ``go get`` to download and install ``gosexy/db``.
 
-    $ go get github.com/xiam/gosexy/db
+  $ go get github.com/xiam/gosexy/db
 
 This package provides shared interfaces and datatypes only, in order to connect to an actual database a driver is required.
 
@@ -163,7 +163,7 @@ You can also use relations in your definition
       },
       db.RelateAll{
         // One-to-many relation with the table "children".
-        "has_children": On{
+        "has_children": db.On{
           session.Collection("children"),
           // Relates rows of the table "children" where children.parent_id = collection.id
           db.Cond{"parent_id": "{id}"},
-- 
GitLab