Skip to content

Commit 17b1cc6

Browse files
authoredSep 22, 2020
Fix typo in code gen step of Tutorial
1 parent faf6e45 commit 17b1cc6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ Use the `oto` tool to generate a client and server:
6363
```bash
6464
mkdir generated
6565
oto -template ./templates/server.go.plush \
66-
-out ./oto.gen.go \
66+
-out ./generated/oto.gen.go \
6767
-ignore Ignorer \
6868
-pkg generated \
69-
./definition
69+
./definitions
7070
gofmt -w ./oto.gen.go ./oto.gen.go
7171
oto -template ./templates/client.js.plush \
72-
-out ./oto.gen.js \
72+
-out ./generated/oto.gen.js \
7373
-ignore Ignorer \
74-
./definition
74+
./definitions
7575
```
7676

7777
- Run `oto -help` for more information about these flags

0 commit comments

Comments
 (0)
Please sign in to comment.