just align doc comment to 100 chars per line

This commit is contained in:
faiface 2017-05-01 01:38:57 +02:00
parent a730295ce8
commit 4de5df6980
1 changed files with 8 additions and 8 deletions

View File

@ -21,16 +21,16 @@ type WindowConfig struct {
// Title at the top of the Window. // Title at the top of the Window.
Title string Title string
// Icon specifies the icon images available to be used by the window. This is usually displayed // Icon specifies the icon images available to be used by the window. This is usually
// in the top bar of the window or in the task bar of the desktop environment. // displayed in the top bar of the window or in the task bar of the desktop environment.
// //
// If passed one image, it will use that image, if passed an array of images // If passed one image, it will use that image, if passed an array of images those of or
// those of or closest to the sizes desired by the system are selected. // closest to the sizes desired by the system are selected. The desired image sizes varies
// The desired image sizes varies depending on platform and system settings. The selected // depending on platform and system settings. The selected images will be rescaled as
// images will be rescaled as needed. Good sizes include 16x16, 32x32 and 48x48. // needed. Good sizes include 16x16, 32x32 and 48x48.
// //
// Note: Setting this value doesn't have an effect on OSX. You'll need to set the icon // Note: Setting this value doesn't have an effect on OSX. You'll need to set the icon when
// when bundling your application for release. // bundling your application for release.
Icon []pixel.Picture Icon []pixel.Picture
// Bounds specify the bounds of the Window in pixels. // Bounds specify the bounds of the Window in pixels.