1313@ PublicSpi
1414public interface PreparsedDocumentProvider {
1515 /**
16- * This is called to get a "cached" pre-parsed query and if its not present, then the "parseAndValidateFunction"
16+ * This is called to get a "cached" pre-parsed query and if it's not present, then the "parseAndValidateFunction"
1717 * can be called to parse and validate the query.
1818 * <p>
19- * Note - the "parseAndValidateFunction" MUST be called if you dont have a per parsed version of the query because it not only parses
19+ * Note - the "parseAndValidateFunction" MUST be called if you don't have a per parsed version of the query because it not only parses
2020 * and validates the query, it invokes {@link graphql.execution.instrumentation.Instrumentation} calls as well for parsing and validation.
21- * if you dont make a call back on this then these wont happen.
21+ * if you don't make a call back on this then these wont happen.
2222 *
2323 * @param executionInput The {@link graphql.ExecutionInput} containing the query
2424 * @param parseAndValidateFunction If the query has not be pre-parsed, this function MUST be called to parse and validate it
@@ -30,12 +30,12 @@ public interface PreparsedDocumentProvider {
3030 PreparsedDocumentEntry getDocument (ExecutionInput executionInput , Function <ExecutionInput , PreparsedDocumentEntry > parseAndValidateFunction );
3131
3232 /**
33- * This is called to get a "cached" pre-parsed query and if its not present, then the "parseAndValidateFunction"
33+ * This is called to get a "cached" pre-parsed query and if it's not present, then the "parseAndValidateFunction"
3434 * can be called to parse and validate the query.
3535 * <p>
36- * Note - the "parseAndValidateFunction" MUST be called if you dont have a per parsed version of the query because it not only parses
36+ * Note - the "parseAndValidateFunction" MUST be called if you don't have a per parsed version of the query because it not only parses
3737 * and validates the query, it invokes {@link graphql.execution.instrumentation.Instrumentation} calls as well for parsing and validation.
38- * if you dont make a call back on this then these wont happen.
38+ * if you don't make a call back on this then these won't happen.
3939 *
4040 * @param executionInput The {@link graphql.ExecutionInput} containing the query
4141 * @param parseAndValidateFunction If the query has not be pre-parsed, this function MUST be called to parse and validate it
0 commit comments