Skip to content

Commit d8120d3

Browse files
authored
Update README.md (#238)
Fixed broken `_example` links in `README.md` Signed-off-by: Stas Afanasev <[email protected]>
1 parent 6ab3946 commit d8120d3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ I did not specify any overrides on the release binary names, so `uname -s` and `
119119
If you prefer makefile stuff, you can always do something like this:
120120

121121
```Makefile
122-
STANDARD_ENUMS = ./_example/animal_enum.go \
123-
./_example/color_enum.go
122+
STANDARD_ENUMS = ./example/animal_enum.go \
123+
./example/color_enum.go
124124

125-
NULLABLE_ENUMS = ./_example/sql_enum.go
125+
NULLABLE_ENUMS = ./example/sql_enum.go
126126

127127
$(STANDARD_ENUMS): GO_ENUM_FLAGS=--nocase --marshal --names --ptr
128128
$(NULLABLE_ENUMS): GO_ENUM_FLAGS=--nocase --marshal --names --sqlnullint --ptr
@@ -220,7 +220,7 @@ const (
220220
221221
#### Example
222222
223-
There are a few examples in the `_example` [directory](_example).
223+
There are a few examples in the `example` [directory](./example/).
224224
I've included one here for easy access, but can't guarantee it's up to date.
225225

226226
``` go

0 commit comments

Comments
 (0)