Skip to content

Commit

Permalink
Changed spacing between sentences to single. Fyne uses the single spa…
Browse files Browse the repository at this point in the history
…ce standard

instead of double space standard after periods.
  • Loading branch information
lazyhacker committed May 15, 2021
1 parent 1b461a6 commit a86eea6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions dialog/file.go
Expand Up @@ -559,7 +559,7 @@ func (f *FileDialog) SetFileName(fileName string) {
}

// NewFileOpen creates a file dialog allowing the user to choose a file to open.
// The callback function will run when the dialog closes. The URI will be nil
// The callback function will run when the dialog closes. The URI will be nil
// when the user cancels or when nothing is selected.
//
// The dialog will appear over the window specified when Show() is called.
Expand All @@ -569,9 +569,9 @@ func NewFileOpen(callback func(fyne.URIReadCloser, error), parent fyne.Window) *
}

// NewFileSave creates a file dialog allowing the user to choose a file to save
// to (new or overwrite). If the user chooses an existing file they will be
// asked if they are sure. The callback function will run when the dialog
// closes. The URI will be nil when the user cancels or when nothing is
// to (new or overwrite). If the user chooses an existing file they will be
// asked if they are sure. The callback function will run when the dialog
// closes. The URI will be nil when the user cancels or when nothing is
// selected.
//
// The dialog will appear over the window specified when Show() is called.
Expand All @@ -581,7 +581,7 @@ func NewFileSave(callback func(fyne.URIWriteCloser, error), parent fyne.Window)
}

// ShowFileOpen creates and shows a file dialog allowing the user to choose a
// file to open. The callback function will run when the dialog closes. The URI
// file to open. The callback function will run when the dialog closes. The URI
// will be nil when the user cancels or when nothing is selected.
//
// The dialog will appear over the window specified.
Expand All @@ -596,7 +596,7 @@ func ShowFileOpen(callback func(fyne.URIReadCloser, error), parent fyne.Window)
// ShowFileSave creates and shows a file dialog allowing the user to choose a
// file to save to (new or overwrite). If the user chooses an existing file they
// will be asked if they are sure. The callback function will run when the
// dialog closes. The URI will be nil when the user cancels or when nothing is
// dialog closes. The URI will be nil when the user cancels or when nothing is
// selected.
//
// The dialog will appear over the window specified.
Expand Down
4 changes: 2 additions & 2 deletions dialog/folder.go
Expand Up @@ -8,7 +8,7 @@ import (
var folderFilter = storage.NewMimeTypeFileFilter([]string{"application/x-directory"})

// NewFolderOpen creates a file dialog allowing the user to choose a folder to
// open. The callback function will run when the dialog closes. The URI will be
// open. The callback function will run when the dialog closes. The URI will be
// nil when the user cancels or when nothing is selected.
//
// The dialog will appear over the window specified when Show() is called.
Expand All @@ -23,7 +23,7 @@ func NewFolderOpen(callback func(fyne.ListableURI, error), parent fyne.Window) *
}

// ShowFolderOpen creates and shows a file dialog allowing the user to choose a
// folder to open. The callback function will run when the dialog closes. The
// folder to open. The callback function will run when the dialog closes. The
// URI will be nil when the user cancels or when nothing is selected.
//
// The dialog will appear over the window specified.
Expand Down

0 comments on commit a86eea6

Please sign in to comment.