We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 814efb8 commit 8769378Copy full SHA for 8769378
src/language/parser.ts
@@ -85,9 +85,9 @@ export interface ParseOptions {
85
/**
86
* Parser CPU and memory usage is linear to the number of tokens in a document
87
* however in extreme cases it becomes quadratic due to memory exhaustion.
88
- * Parsing happens before validation so even invalid queries can burn a lots of
+ * Parsing happens before validation so even invalid queries can burn lots of
89
* CPU time and memory.
90
- * To prevent this you can set limit on maximum number of tokens.
+ * To prevent this you can set a maximum number of tokens allowed within a document.
91
*/
92
maxTokens?: number | undefined;
93
0 commit comments