@@ -311,34 +311,34 @@ class StylesBase:
311311 """If `relative` offset is applied to widgets current position, if `absolute` it is applied to (0, 0)."""
312312
313313 border = BorderProperty (layout = True )
314- """Set the border of the widget e.g. ("rounded ", "green") or "none"."""
314+ """Set the border of the widget e.g. ("round ", "green") or "none"."""
315315
316316 border_top = BoxProperty (Color (0 , 255 , 0 ))
317- """Set the top border of the widget e.g. ("rounded ", "green") or "none"."""
317+ """Set the top border of the widget e.g. ("round ", "green") or "none"."""
318318 border_right = BoxProperty (Color (0 , 255 , 0 ))
319- """Set the right border of the widget e.g. ("rounded ", "green") or "none"."""
319+ """Set the right border of the widget e.g. ("round ", "green") or "none"."""
320320 border_bottom = BoxProperty (Color (0 , 255 , 0 ))
321- """Set the bottom border of the widget e.g. ("rounded ", "green") or "none"."""
321+ """Set the bottom border of the widget e.g. ("round ", "green") or "none"."""
322322 border_left = BoxProperty (Color (0 , 255 , 0 ))
323- """Set the left border of the widget e.g. ("rounded ", "green") or "none"."""
323+ """Set the left border of the widget e.g. ("round ", "green") or "none"."""
324324
325325 border_title_align = StringEnumProperty (VALID_ALIGN_HORIZONTAL , "left" )
326326 """The alignment of the border title text."""
327327 border_subtitle_align = StringEnumProperty (VALID_ALIGN_HORIZONTAL , "right" )
328328 """The alignment of the border subtitle text."""
329329
330330 outline = BorderProperty (layout = False )
331- """Set the outline of the widget e.g. ("rounded ", "green") or "none".
331+ """Set the outline of the widget e.g. ("round ", "green") or "none".
332332 The outline is drawn *on top* of the widget, rather than around it like border.
333333 """
334334 outline_top = BoxProperty (Color (0 , 255 , 0 ))
335- """Set the top outline of the widget e.g. ("rounded ", "green") or "none"."""
335+ """Set the top outline of the widget e.g. ("round ", "green") or "none"."""
336336 outline_right = BoxProperty (Color (0 , 255 , 0 ))
337- """Set the right outline of the widget e.g. ("rounded ", "green") or "none"."""
337+ """Set the right outline of the widget e.g. ("round ", "green") or "none"."""
338338 outline_bottom = BoxProperty (Color (0 , 255 , 0 ))
339- """Set the bottom outline of the widget e.g. ("rounded ", "green") or "none"."""
339+ """Set the bottom outline of the widget e.g. ("round ", "green") or "none"."""
340340 outline_left = BoxProperty (Color (0 , 255 , 0 ))
341- """Set the left outline of the widget e.g. ("rounded ", "green") or "none"."""
341+ """Set the left outline of the widget e.g. ("round ", "green") or "none"."""
342342
343343 keyline = KeylineProperty ()
344344 """Keyline parameters."""
0 commit comments