From 1f3e820a3432792d38cf1f69d789d98937ca0750 Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Sat, 14 Oct 2023 16:53:15 +0000 Subject: [PATCH] Fix typo --- docs/userguide/lifted_ops.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/userguide/lifted_ops.rst b/docs/userguide/lifted_ops.rst index abaeca7915..6e258b9b62 100644 --- a/docs/userguide/lifted_ops.rst +++ b/docs/userguide/lifted_ops.rst @@ -50,7 +50,7 @@ The ``.`` operator works similarly to ``[]`` described above: fut = my_app assert fut.x.result() == fut.result().x -Attributes beginning with ``_`` are not lifted as thus usually indicates an +Attributes beginning with ``_`` are not lifted as this usually indicates an attribute that is used for internal purposes, and to try to avoid mixing protocols (such as iteration in for loops) defined on AppFutures vs protocols defined on the underlying result object.