Skip to content

Commit

Permalink
Improved notebook prompts
Browse files Browse the repository at this point in the history
Closes #71
  • Loading branch information
geir-eilertsen committed Dec 21, 2024
1 parent 7c2ff4d commit 571708a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@ public void takeNote(CalendarNote note) {
public void readNoteForNow() {
forPersistingNotes.getFirstOverdueAndDelete()
.ifPresent(note -> {
somethingWasTextedUseCase.read(new TextMessage("Notebook", "notebook", note.note()), false);
somethingWasTextedUseCase.read(
new TextMessage(
"Notebook",
"notebook",
"Note from the notebook to the user: " + note.note()
),
false
);
});
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ public String name() {
@Override
public String description() {
return """
This tool is used for writing reminders to yourself in your notebook.
Check that you have the correct time before writing a reminder.
The notebook will automatically remind you at the time you specify.
This tool is used for writing notes in your notebook.
When the time arrives, you will be reminded of the note.
You should then tell the user about it.
Check your watch before making a note.
""";
}

Expand Down

0 comments on commit 571708a

Please sign in to comment.