Error In Viewbuilder Documention For Bitmaps

-- properties  
  
-- setup how the bitmap should be painted, recolored. Available modes are:  
-- "plain" -> bitmap is drawn just like it is, no recoloring is done  
-- "transparent" -> same as plain, but will treat black pixels fully transparent  
-- "button_back" -> recolor the bitmap, using the color themes button color  
-- "body_back" -> same as 'button_back' but with body text/back color  
-- "main_back" -> same as 'button_back' but with main text/back colors  
-- by default "plain"  
bitmapview.mode -> [string]   

should be

-- properties  
  
-- setup how the bitmap should be painted, recolored. Available modes are:  
-- "plain" -> bitmap is drawn just like it is, no recoloring is done  
-- "transparent" -> same as plain, but will treat black pixels fully transparent  
-- "button_color" -> recolor the bitmap, using the color themes button color  
-- "body_color" -> same as 'button_back' but with body text/back color  
-- "main_color" -> same as 'button_back' but with main text/back colors  
-- by default "plain"  
bitmapview.mode -> [string]