Skip to content

Commit

Permalink
Update README.md (#238)
Browse files Browse the repository at this point in the history
Fixed broken `_example` links in `README.md`

Signed-off-by: Stas Afanasev <superstas@users.noreply.github.com>
  • Loading branch information
superstas committed Mar 24, 2024
1 parent 6ab3946 commit d8120d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,10 @@ I did not specify any overrides on the release binary names, so `uname -s` and `
If you prefer makefile stuff, you can always do something like this:

```Makefile
STANDARD_ENUMS = ./_example/animal_enum.go \
./_example/color_enum.go
STANDARD_ENUMS = ./example/animal_enum.go \
./example/color_enum.go

NULLABLE_ENUMS = ./_example/sql_enum.go
NULLABLE_ENUMS = ./example/sql_enum.go

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

``` go
Expand Down

0 comments on commit d8120d3

Please sign in to comment.