Python: Add missing ` in qldoc

This commit is contained in:
Rasmus Wriedt Larsen
2020-04-01 12:07:19 +02:00
parent 42e180d6c4
commit f8f51109d0

View File

@@ -415,7 +415,7 @@ class ClassValue extends Value {
* ```
* `this.lookup("f")` is equivalent to `C.__dict__['f']`, which is the class-method
* whereas
* `this.attr("f") is equivalent to `C.f`, which is a bound-method.
* `this.attr("f")` is equivalent to `C.f`, which is a bound-method.
*/
Value lookup(string name) { this.(ClassObjectInternal).lookup(name, result, _) }