From 1273d39feb38b8657f76d2d3a66c3e2e8e664a31 Mon Sep 17 00:00:00 2001 From: Andrey Deryabin Date: Mon, 10 Oct 2016 11:59:43 +0300 Subject: [PATCH] fix typo --- documents/curd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documents/curd.md b/documents/curd.md index 40944c3f..0dbbc1c7 100644 --- a/documents/curd.md +++ b/documents/curd.md @@ -52,7 +52,7 @@ db.Set("gorm:save_associations", false).Create(&user) ### Default Values -You could define default value in the `gorm` tag, then the inserting SQL will ignore these fields that has default value and its value is blank, and after insert the record into databae, gorm will load those fields's value from database. +You could define default value in the `gorm` tag, then the inserting SQL will ignore these fields that has default value and its value is blank, and after insert the record into database, gorm will load those fields's value from database. ```go type Animal struct {