diff --git a/app/src/main/java/com/app/simplitend/patientprofile/setuproutine/AddRoutineFragment.java b/app/src/main/java/com/app/simplitend/patientprofile/setuproutine/AddRoutineFragment.java index cbcdb37..22224c7 100644 --- a/app/src/main/java/com/app/simplitend/patientprofile/setuproutine/AddRoutineFragment.java +++ b/app/src/main/java/com/app/simplitend/patientprofile/setuproutine/AddRoutineFragment.java @@ -288,7 +288,7 @@ public class AddRoutineFragment extends Fragment implements CompoundButton.OnChe if (start_date == null || end_date == null) throw new Exception(); if (start_date.getTime() >= end_date.getTime()){ - Toast.makeText(requireContext(), "Emd time should be greater than start time.", Toast.LENGTH_SHORT).show(); + Toast.makeText(requireContext(), "End time should be greater than start time.", Toast.LENGTH_SHORT).show(); allOkay = false; }