From 220118788da1ce9cc477fee661e216769689667c Mon Sep 17 00:00:00 2001 From: adrien guernier Date: Wed, 5 Jul 2023 16:51:38 +0200 Subject: [PATCH] [Doc] fix a typo in variable template example using polyglot --- docs/AutocompleteInput.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/AutocompleteInput.md b/docs/AutocompleteInput.md index a0d9f3b1127..b4a3597137d 100644 --- a/docs/AutocompleteInput.md +++ b/docs/AutocompleteInput.md @@ -831,7 +831,7 @@ const CreateCategory = () => { **Tip:** As showcased in this example, react-admin provides a convenient hook for accessing the filter the user has already input in the ``: `useCreateSuggestionContext`. -The `Create %{item}%` option will only be displayed once the user has already set a filter (by typing in some input). If you expect your users to create new items often, you can make this more user-friendly by adding a placeholder text like this: +The `Create %{item}` option will only be displayed once the user has already set a filter (by typing in some input). If you expect your users to create new items often, you can make this more user-friendly by adding a placeholder text like this: {% raw %} ```diff