1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00

typo fix: internally

Former-commit-id: c9bc56aaf2ee4c88a8827dd1a1731f2788643a28
This commit is contained in:
Gerasimos (Makis) Maropoulos
2018-10-15 11:58:57 +03:00
parent b2bcef74c0
commit a1d80ce4b6

View File

@@ -36,7 +36,7 @@ func main() {
// Register validation for 'User'
// NOTE: only have to register a non-pointer type for 'User', validator
// interanlly dereferences during it's type checks.
// internally dereferences during it's type checks.
validate.RegisterStructValidation(UserStructLevelValidation, User{})
app := iris.New()