Skip to content

Commit f8f5110

Browse files
committed
Python: Add missing ` in qldoc
1 parent 42e180d commit f8f5110

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/src/semmle/python/objects/ObjectAPI.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ class ClassValue extends Value {
415415
* ```
416416
* `this.lookup("f")` is equivalent to `C.__dict__['f']`, which is the class-method
417417
* whereas
418-
* `this.attr("f") is equivalent to `C.f`, which is a bound-method.
418+
* `this.attr("f")` is equivalent to `C.f`, which is a bound-method.
419419
*/
420420
Value lookup(string name) { this.(ClassObjectInternal).lookup(name, result, _) }
421421

0 commit comments

Comments
 (0)