Skip to content

Commit fbee949

Browse files
committed
Correct some typos
1 parent 2c1645a commit fbee949

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

ReadMe.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,10 @@ The demos module has a complete example of an simple application in `ShowMessage
100100

101101
### BusyWorker
102102

103-
BusyWorker helps running a UI task on separate threads (other than the JavaFX Application thread).
104-
It will show busy cursor and disable specified nodes while the task is performed.
105-
It gives an option to show progress and status messages.
106-
`BusyWorker` takes care of handling handling exceptions and displaying error dialogs.
107-
It provides for an option to perform custom finish actions after task is completed.
103+
BusyWorker helps running a UI task on separate threads (other than the JavaFX Application thread). It will show busy
104+
cursor and disable specified nodes while the task is performed. It gives an option to show progress and status messages.
105+
`BusyWorker` takes care of handling exceptions and displaying error dialogs. It provides for an option to perform custom
106+
finish actions after task is completed.
108107

109108
#### Example 1
110109

@@ -122,7 +121,7 @@ new BusyWorker("Simple Task", parentWindow).doTask { () =>
122121

123122
#### Examnple 2
124123

125-
Her is a little bit more elaborated example. It updates a progress message and progress indicator.
124+
Here is a little more elaborated example. It updates a progress message and progress indicator.
126125
```scala
127126
val buttonPane: Pane = ...
128127
val progressLabel: Label = ...
@@ -163,8 +162,8 @@ The demos module has a complete example of a simple application: [StopWatchApp][
163162

164163
### ImageDisplay Component
165164

166-
ImageDisplay Component is an image view with ability to zoom in, zoom out, zoom to fit.
167-
It can also automatically resizes to parent size.
165+
ImageDisplay Component is an image view with ability to zoom in, zoom out, zoom to fit. It can also automatically resize
166+
to parent size.
168167

169168

170169
Demos

0 commit comments

Comments
 (0)