Wrong doc filter cvs convert

Hi,

There is a problem with the doc example :

https://www.elastic.co/guide/en/logstash/current/plugins-filters-csv.html#plugins-filters-csv-convert

filter {
  csv {
    convert => { "column1" => "integer", "column2" => "boolean" }
  }
}

it should be

filter {
  csv {
    convert => { "column1" => "integer"
                 "column2" => "boolean"
   }
  }
}

Without the coma, or it catches an error when launching logstash.

Looks like this was fixed, but website documentation has not be regenerated yet. Thank you for reporting this.