Skip to content

Commit 751d338

Browse files
getTextInput added
1 parent a4c4125 commit 751d338

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastdialog/src/main/java/karpuzoglu/enes/com/fastdialog/FastDialogBuilder.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,9 +193,9 @@ public FastDialogBuilder negativeText(String negative){
193193
btCancel.setText(negative);
194194
return this;
195195
}
196-
public FastDialogBuilder positiveText(String possitive){
196+
public FastDialogBuilder positiveText(String positive){
197197
btOk.setVisibility(View.VISIBLE);
198-
btOk.setText(possitive);
198+
btOk.setText(positive);
199199
return this;
200200
}
201201
public FastDialogBuilder decimalEditText(){

0 commit comments

Comments
 (0)