Skip to content

Commit

Permalink
Samples: fix typos and descriptions in sampler welcome screen
Browse files Browse the repository at this point in the history
  • Loading branch information
wirew0rm committed Aug 9, 2023
1 parent b3baaa7 commit 4d13c6b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class ChartFxDatasetSamplerProject implements FXSamplerProject {
pane.getChildren().add(imgView);
Label label = new Label();
label.setWrapText(true);
label.setText("Weilcome to ChartFx!\nThis library provides a wide array of facilities for high performance scientiific plotting.\n\n Explore the available chart controls by clicking on the options to the left.");
label.setText("Welcome to ChartFx!\nThis library provides a wide array of facilities for high performance scientific plotting.\n\n Explore the available chart controls by clicking on the options to the left.");
label.setStyle("-fx-font-size: 1.5em; -fx-padding: 20 0 0 5;");
vBox.getChildren().addAll(pane, label);
return new WelcomePage("Welcome to ChartFx!", vBox);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class ChartFxFinancialSamplerProject implements FXSamplerProject {
pane.getChildren().add(imgView);
Label label = new Label();
label.setWrapText(true);
label.setText("Weilcome to ChartFx!\nThis library provides a wide array of facilities for high performance scientiific plotting.\n\n Explore the available chart controls by clicking on the options to the left.");
label.setText("Welcome to the ChartFx financial samples!\nThese samples showcase the financial plotting tools included in ChartFx.\n\n Explore the available chart types by clicking on the options to the left.");
label.setStyle("-fx-font-size: 1.5em; -fx-padding: 20 0 0 5;");
vBox.getChildren().addAll(pane, label);
return new WelcomePage("Welcome to ChartFx!", vBox);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class ChartFxMathSamplerProject implements FXSamplerProject {
pane.getChildren().add(imgView);
Label label = new Label();
label.setWrapText(true);
label.setText("Weilcome to ChartFx!\nThis library provides a wide array of facilities for high performance scientiific plotting.\n\n Explore the available chart controls by clicking on the options to the left.");
label.setText("Welcome to the ChartFx math samples!\nThese samples showcase the use of ChartFx and the accompanying data processing facilities.\n\n Explore the available samples by clicking on the options to the left.");
label.setStyle("-fx-font-size: 1.5em; -fx-padding: 20 0 0 5;");
vBox.getChildren().addAll(pane, label);
return new WelcomePage("Welcome to ChartFx!", vBox);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class ChartFxMiscSamplerProject implements FXSamplerProject {
pane.getChildren().add(imgView);
Label label = new Label();
label.setWrapText(true);
label.setText("Weilcome to ChartFx!\nThis library provides a wide array of facilities for high performance scientiific plotting.\n\n Explore the available chart controls by clicking on the options to the left.");
label.setText("Welcome to ChartFx misc samples!\nHere you can explore additional controls which are not directly charting related but might be useful in a general context.\n\n Explore the available chart controls by clicking on the options to the left.");
label.setStyle("-fx-font-size: 1.5em; -fx-padding: 20 0 0 5;");
vBox.getChildren().addAll(pane, label);
return new WelcomePage("Welcome to ChartFx!", vBox);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class ChartFxSamplerProject implements FXSamplerProject {
pane.getChildren().add(imgView);
Label label = new Label();
label.setWrapText(true);
label.setText("Weilcome to ChartFx!\nThis library provides a wide array of facilities for high performance scientiific plotting.\n\n Explore the available chart controls by clicking on the options to the left.");
label.setText("Welcome to ChartFx samples!\nThis library provides a wide array of facilities for high performance scientific plotting.\n\n Explore the available chart controls by clicking on the options to the left.");
label.setStyle("-fx-font-size: 1.5em; -fx-padding: 20 0 0 5;");
vBox.getChildren().addAll(pane, label);
return new WelcomePage("Welcome to ChartFx!", vBox);
Expand Down

0 comments on commit 4d13c6b

Please sign in to comment.