Skip to content
Merged
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
14 changes: 10 additions & 4 deletions docs/4. Product Features/04. Triggers.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<tr>
<td><b>3 minute read</b></td>
<td style={{ paddingLeft: 40 }}><b>Level: Beginner</b></td>
<td style={{ paddingLeft: 40 }}><b>Last updated: August 2025</b></td>
<td style={{ paddingLeft: 40 }}><b>Last updated: March 2026</b></td>
</tr>
</table>

Expand Down Expand Up @@ -44,9 +44,15 @@ Example: To send a reminder every Monday at 10 AM to a Training Participants col

6. Choose the repeat option:

- Daily: Runs every day at the chosen time.
- Weekly: Runs only on selected weekdays.
- Does not repeat: Runs only once.
- Daily: Runs every day at the set time.

- Weekly: Runs on specific days of the week.

- Hourly: Runs every hour.

- Monthly: Runs once a month on a chosen date.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix inconsistent list formatting.

Line 53 has two spaces after the dash (- Monthly:), while other list items use one space. This should be standardized for consistency.

🔧 Proposed fix
-- Monthly: Runs once a month on a chosen date.
+- Monthly: Runs once a month on a chosen date.
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- Monthly: Runs once a month on a chosen date.
- Monthly: Runs once a month on a chosen date.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/4`. Product Features/04. Triggers.md at line 53, Fix the inconsistent
list formatting in the markdown list item "Monthly: Runs once a month on a
chosen date." by changing the double space after the dash to a single space so
it matches the other list items; locate the line containing that exact text and
update the leading "-  " to "- " to standardize list spacing.


- Does not repeat: No repetition.


7. Select a specific day if you choose weekly option.
Expand Down
Loading