From ce586ed6931092d3a5f06df9031cdeb891793ddb Mon Sep 17 00:00:00 2001 From: David Date: Fri, 11 Mar 2022 08:11:42 +0000 Subject: Removed hyphen from pre-/re- prefixes. "prepopulate", "preload", and "preprocessing" are already in the spelling_wordlist. This also removes hyphen from double "e" combinations with "pre" and "re", e.g. preexisting, preempt, reestablish, or reenter. See also: - https://ahdictionary.com/word/search.html?q=rerun - https://ahdictionary.com/word/search.html?q=recreate - https://ahdictionary.com/word/search.html?q=predetermined - https://ahdictionary.com/word/search.html?q=reuse - https://ahdictionary.com/word/search.html?q=reopening --- docs/ref/models/expressions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/ref/models') diff --git a/docs/ref/models/expressions.txt b/docs/ref/models/expressions.txt index 60c4c87dcd..b3702116d7 100644 --- a/docs/ref/models/expressions.txt +++ b/docs/ref/models/expressions.txt @@ -972,7 +972,7 @@ calling the appropriate methods on the wrapped expression. .. method:: resolve_expression(query=None, allow_joins=True, reuse=None, summarize=False, for_save=False) - Provides the chance to do any pre-processing or validation of + Provides the chance to do any preprocessing or validation of the expression before it's added to the query. ``resolve_expression()`` must also be called on any nested expressions. A ``copy()`` of ``self`` should be returned with any necessary transformations. @@ -1091,7 +1091,7 @@ We do some basic validation on the parameters, including requiring at least ``output_field`` here so that Django knows what kind of model field to assign the eventual result to. -Now we implement the pre-processing and validation. Since we do not have +Now we implement the preprocessing and validation. Since we do not have any of our own validation at this point, we delegate to the nested expressions:: -- cgit v1.3