Quellcode durchsuchen

Fixed documentation error

Manu Mtz-Almeida vor 10 Jahren
Ursprung
Commit
e60087f223
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      context.go

+ 1 - 1
context.go

@@ -235,7 +235,7 @@ func (c *Context) Bind(obj interface{}) error {
 	return c.BindWith(obj, b)
 }
 
-// Shortcut for c.Bind(obj, binding.JSON)
+// Shortcut for c.BindWith(obj, binding.JSON)
 func (c *Context) BindJSON(obj interface{}) error {
 	return c.BindWith(obj, binding.JSON)
 }