Skip to content

Commit c3ff9f3

Browse files
authored
Example code contains misspelling (#2197)
Changed ParamatrizedController to ParametrizedController in 3 places
1 parent 971d7cc commit c3ff9f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/docs/software/dashboards/shuffleboard/custom-widgets/creating-a-new-widget.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ It also must include a ``@ParametrizedController`` annotation that points to the
7878
*/
7979
8080
@Description(name = "MyPoint2D", dataTypes = MyPoint2D.class)
81-
@ParamatrizedController("Point2DWidget.fxml")
81+
@ParametrizedController("Point2DWidget.fxml")
8282
public final class Point2DWidget extends SimpleAnnotatedWidget<MyPoint2D> {
8383
8484
}
@@ -118,7 +118,7 @@ In order to display our pane on our custom widget we need to override the ``getV
118118
import javafx.fxml.FXML;
119119
120120
@Description(name = "MyPoint2D", dataTypes = MyPoint2D.class)
121-
@ParamatrizedController("Point2DWidget.fxml")
121+
@ParametrizedController("Point2DWidget.fxml")
122122
public final class Point2DWidget extends SimpleAnnotatedWidget<MyPoint2D> {
123123
124124
@FXML
@@ -153,7 +153,7 @@ A good practice is to set bindings in the ``initialize()`` method tagged with th
153153
import javafx.fxml.FXML;
154154
155155
@Description(name = "MyPoint2D", dataTypes = MyPoint2D.class)
156-
@ParamatrizedController("Point2DWidget.fxml")
156+
@ParametrizedController("Point2DWidget.fxml")
157157
public final class Point2DWidget extends SimpleAnnotatedWidget<MyPoint2D> {
158158
159159
@FXML

0 commit comments

Comments
 (0)