@@ -320,13 +320,13 @@ module Lxml {
320
320
override DataFlow:: Node getAPathArgument ( ) { result = this .getAnInput ( ) }
321
321
}
322
322
323
- /** Provides models for instances of the `lxml.etree.Element` class. */
323
+ /** Provides models for the `lxml.etree.Element` class. */
324
324
module Element {
325
325
/** Gets a reference to the `Element` class. */
326
326
API:: Node classRef ( ) { result = etreeRef ( ) .getMember ( [ "Element" , "_Element" ] ) }
327
327
328
328
/**
329
- * A source of instances of `lxml.etree.Element` instances, extend this class to model new instances.
329
+ * A source of `lxml.etree.Element` instances, extend this class to model new instances.
330
330
*
331
331
* This can include instantiations of the class, return values from function
332
332
* calls, or a special parameter that will be set when functions are called by an external
@@ -408,7 +408,7 @@ module Lxml {
408
408
|
409
409
call .calls ( nodeFrom ,
410
410
// We consider a node to be tainted if there could be taint anywhere in the element tree;
411
- // So sibling nodes (e.g. `getnext`) are also tainted.
411
+ // so sibling nodes (e.g. `getnext`) are also tainted.
412
412
// This ensures nodes like `elem[0].getnext()` are tracked.
413
413
[
414
414
"cssselect" , "find" , "findall" , "findtext" , "get" , "getchildren" , "getiterator" ,
@@ -425,13 +425,13 @@ module Lxml {
425
425
}
426
426
}
427
427
428
- /** Provides models for instances of the `lxml.etree.ElementTree` class. */
428
+ /** Provides models for the `lxml.etree.ElementTree` class. */
429
429
module ElementTree {
430
430
/** Gets a reference to the `ElementTree` class. */
431
431
API:: Node classRef ( ) { result = etreeRef ( ) .getMember ( [ "ElementTree" , "_ElementTree" ] ) }
432
432
433
433
/**
434
- * A source of instances of `lxml.etree.ElementTree` instances, extend this class to model new instances.
434
+ * A source of `lxml.etree.ElementTree` instances; extend this class to model new instances.
435
435
*
436
436
* This can include instantiations of the class, return values from function
437
437
* calls, or a special parameter that will be set when functions are called by an external
@@ -452,7 +452,7 @@ module Lxml {
452
452
ElementTreeInstance ( ) { this = classRef ( ) .getAnInstance ( ) }
453
453
}
454
454
455
- /** The result of a parst operation that returns an `ElementTree`. */
455
+ /** The result of a parse operation that returns an `ElementTree`. */
456
456
private class ParseResult extends InstanceSource {
457
457
ParseResult ( ) { this = etreeRef ( ) .getMember ( "parse" ) .getReturn ( ) }
458
458
}
0 commit comments