Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/java/com/example/notes/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public boolean onItemLongClick(AdapterView<?> parent, View view, int i, long id)
new AlertDialog.Builder(MainActivity.this)
.setIcon(android.R.drawable.ic_dialog_alert)
.setTitle("Are you sure!?")
.setMessage("Do you want to delete this note?")
.setMessage("Do you want to delete this note ?")
.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int i) {
Expand Down