Skip to content

Commit

Permalink
Merge pull request #38 from slimsag/typo_fix
Browse files Browse the repository at this point in the history
Fix "Unsupproted" typo.
  • Loading branch information
errcw committed Aug 16, 2014
2 parents af29c66 + 8e17ebe commit 4fd8e0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conversions.tmpl
Expand Up @@ -35,7 +35,7 @@ func Ptr(data interface{}) unsafe.Pointer {
case reflect.Array:
addr = unsafe.Pointer(v.UnsafeAddr())
default:
panic(fmt.Sprintf("Unsupproted type %s; must be a pointer, slice, or array", v.Type()))
panic(fmt.Sprintf("Unsupported type %s; must be a pointer, slice, or array", v.Type()))
}
return addr
}
Expand Down

0 comments on commit 4fd8e0e

Please sign in to comment.