Skip to content

Commit e60ec1b

Browse files
renevanderheijdenRene van der Heijden
andauthored
Fix typo (#374)
Co-authored-by: Rene van der Heijden <r.van.der.heijden@VDLETS.nl>
1 parent 7dbedf2 commit e60ec1b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/main/java/jenkins/plugins/office365connector/model/adaptivecard/ColumnSet.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ public class ColumnSet implements AdaptiveCardElement {
1010
private final String type = "ColumnSet";
1111
private final List<Column> columns;
1212
@SuppressFBWarnings(value = "SS_SHOULD_BE_STATIC")
13-
private final String witdth = "stretch";
13+
private final String width = "stretch";
1414

1515
public ColumnSet(final List<Column> items) {
1616
this.columns = items;
1717
}
1818

19-
public String getWitdth() {
20-
return witdth;
19+
public String getWidth() {
20+
return width;
2121
}
2222

2323
public List<Column> getColumns() {

src/test/resources/requests/adaptivecard-success.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
]
4545
}
4646
],
47-
"witdth": "stretch"
47+
"width": "stretch"
4848
},
4949
{
5050
"facts": [

0 commit comments

Comments
 (0)