From 1ddbf6646cc9200f99d9d32c7b9b53af62c28109 Mon Sep 17 00:00:00 2001 From: TianYu GUO Date: Thu, 4 Jan 2024 11:16:43 +0800 Subject: [PATCH] Update relay_expr.rst --- docs/reference/langref/relay_expr.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/langref/relay_expr.rst b/docs/reference/langref/relay_expr.rst index 72af31663e8a..c50acc2949dd 100644 --- a/docs/reference/langref/relay_expr.rst +++ b/docs/reference/langref/relay_expr.rst @@ -503,7 +503,7 @@ in scope in its value to allow for recursively defined functions The value of a :code:`let` binding is the value of the final expression after evaluating the bindings it depends on. For example, in the following example the entire expression evaluates to a tensor -of shape :code:`(10, 10)` where all elements are 2: +of shape :code:`(10, 10)` where all elements are 1: .. code-block::