Fixed Some Typos

Not sure if this sentence is right 

`// iris provides some basic middleware, most for your learning curve.`
Maybe you meant something like
` // iris provides some basic middleware to help newcomers understand the concepts.`
But I wasn't sure so I left the sentence alone (exepct for the typo lol)

Former-commit-id: e2f2be25d57c84e0deb8a2c7a41fc822aa38118c
This commit is contained in:
Matthew Cale 2018-08-10 16:40:44 -05:00 committed by GitHub
parent 9f464310e3
commit 5dafdecc54

View File

@ -1,4 +1,4 @@
// iris provides some basic middleware, most for your learning courve.
// iris provides some basic middleware, most for your learning curve.
// You can use any net/http compatible middleware with iris.FromStd wrapper.
//
// JWT net/http video tutorial for golang newcomers: https://www.youtube.com/watch?v=dgJFeqeXVKw
@ -43,4 +43,4 @@ func main() {
app.Get("/ping", myHandler)
app.Run(iris.Addr("localhost:3001"))
} // don't forget to look ../jwt_test.go to seee how to set your own custom claims
} // don't forget to look ../jwt_test.go to see how to set your own custom claims