From 20ed53591c6b61dd86ee192b9bc4591a97762d38 Mon Sep 17 00:00:00 2001 From: 14Sandee Date: Wed, 10 Jan 2024 15:42:42 +0530 Subject: [PATCH] . --- .../patientprofile/setuproutine/AddRoutineFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }