``` package main import ( "fmt" "strings" ) func main() { fmt.Println(strings.Trim("2016-11-22T00:26:00+0000", "+0000")) } ``` The result is `2016-11-22T00:26:`, but I expected `2016-11-22T00:26:00`. Is this a bug or an expected one?