From 76a2fea07688db8320e444f88c7dbb7d3f4fae69 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Mon, 2 Feb 2026 16:20:41 -0600 Subject: [PATCH] docs: Typo (#6993) --- docs/docs/documentation/getting-started/api-usage.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/documentation/getting-started/api-usage.md b/docs/docs/documentation/getting-started/api-usage.md index 92a11ee16..4eaa97ee7 100644 --- a/docs/docs/documentation/getting-started/api-usage.md +++ b/docs/docs/documentation/getting-started/api-usage.md @@ -91,12 +91,12 @@ This filter will find all recipes that have particular slugs:
`slug IN ["pasta-fagioli", "delicious-ramen"]` ##### Placeholder Keywords -You can use placeholders to insert dynamic values as opposed to static values. Currently the only supported placeholder keyword is `$NOW`, to insert the current time. +You can use placeholders to insert dynamic values as opposed to static values. Currently the only supported placeholder keyword is `$NOW`, to insert the current date/time. `$NOW` can optionally be paired with basic offsets. Here is an example of a filter which gives you recipes not made within the past 30 days:
`lastMade <= "$NOW-30d"` -Supported offsets operations include: +Supported offset operations include: - `-` for subtracting a time (i.e. in the past) - `+` for adding a time (i.e. in the future)