Add note about panic in ShorthandLookup
diff --git a/flag.go b/flag.go
index 6ea0c48..801a444 100644
--- a/flag.go
+++ b/flag.go
@@ -319,7 +319,9 @@
 	return f.lookup(f.normalizeFlagName(name))
 }
 
-// ShorthandLookup returns the Flag structure of the short handed flag, returning nil if none exists.
+// ShorthandLookup returns the Flag structure of the short handed flag,
+// returning nil if none exists.
+// It panics, if len(name) > 1.
 func (f *FlagSet) ShorthandLookup(name string) *Flag {
 	if name == "" {
 		return nil