From ca4dc4433be74a4d5869881486f55c3c71ef2f01 Mon Sep 17 00:00:00 2001 From: Taichi Sasaki Date: Thu, 6 Jul 2017 07:05:32 +0900 Subject: [PATCH] Fix examples of Find in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 55ee598..073004e 100644 --- a/README.md +++ b/README.md @@ -1027,10 +1027,10 @@ Find is used to find a single row by primary key: ```go // Retrieve pilot with all columns filled -pilot, err := models.PilotFind(db, 1) +pilot, err := models.FindPilot(db, 1) // Retrieve a subset of column values -jet, err := models.JetFind(db, 1, "name", "color") +jet, err := models.FindJet(db, 1, "name", "color") ``` ### Insert