Skip to content

Commit

Permalink
Use valid syntax in examples, avoid "..."
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsacha committed Mar 19, 2024
1 parent e1110da commit 75edf20
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,12 +288,9 @@ new BusyWorker("Simple Task", parentWindow).doTask { () =>
Here is a little more elaborated example. It updates a progress message and progress indicator.

```scala
val buttonPane: Pane =
...
val progressLabel: Label =
...
val progressBar: ProgressBar =
...
val buttonPane: Pane = ???
val progressLabel: Label = ???
val progressBar: ProgressBar = ???

val busyWorker = new BusyWorker("BusyWorker Demo", buttonPane) {
progressLabel.text <== progressMessage
Expand Down

0 comments on commit 75edf20

Please sign in to comment.