From efd3c54fd4fb8e0804549dbffaf53b2b194cc17a Mon Sep 17 00:00:00 2001 From: Shreyas Karnik Date: Thu, 27 Sep 2018 14:08:50 -0700 Subject: [PATCH] Fixed Link to Fizz Types in Readme.md (#252) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c09012b2..c255fa0e 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ The `models/user.go` file contains a structure named `User` with fields `ID`, `C * `time` or `timestamp` (`time.Time`) * `nulls.Text` (`nulls.String`) which corresponds to a nullifyable string, which can be distinguished from an empty string * `uuid` (`uuid.UUID`) -* Other types are passed thru and are used as [Fizz](./fizz/README.md) types. +* Other types are passed thru and are used as [Fizz](https://github.com/gobuffalo/fizz/blob/master/README.md#-common-types) types. The `models/user_test.go` contains tests for the User model and they must be implemented by you.