From 95278e21691d5cc5fca18e3d2a4f8393e15a0526 Mon Sep 17 00:00:00 2001 From: Stephane Corlosquet Date: Sat, 18 Apr 2020 00:27:35 -0400 Subject: [PATCH] Fix User{} syntax in README file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 61fad1c..e5aea40 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Some things to try: - define a struct `type mock struct {}`, enter a new line , press F1 and run the **Go: Generate interface stubs** command. - edit command `m *mock http.ResponseWriter` 9. **Fill structs:** ([details](https://github.com/davidrjenni/reftools/tree/master/cmd/fillstruct)) - - Open `hello.go` and select `user{}` of variable asignment, press F1 and run the **Go: Fill struct** command. + - Open `hello.go` and select `User{}` of variable asignment, press F1 and run the **Go: Fill struct** command. 10. **Add json tags to structs:** ([details](https://github.com/fatih/gomodifytags)) - Open `hello.go` and go with cursor in to a struct, press F1 and run the **Go: Add Tags To Struct Fields** command.