From 132ebf45d726b0eba9c85bf5e37ffb7053c1bea1 Mon Sep 17 00:00:00 2001 From: joao guilherme Date: Thu, 11 Feb 2021 10:53:09 -0300 Subject: [PATCH] Update examples/tutorial.dx Co-authored-by: Dan Zheng --- examples/tutorial.dx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tutorial.dx b/examples/tutorial.dx index 675ffc8e6..eab2df68e 100644 --- a/examples/tutorial.dx +++ b/examples/tutorial.dx @@ -88,7 +88,7 @@ import plot ' This style of using `for` to construct type-inferred tables is central to what makes Dex powerful. Tables do not only need to have `Fin` types. -' Let's consider another example. This one produces a list of 1s +' Let's consider another example. This one produces a list of ones in Python. ' `y = [1.0 for j in range(width) for i in range(height)]`