Skip to content

Commit 1068de8

Browse files
committed
Small improvements
1 parent 01ab873 commit 1068de8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

doc/getting_started/tutorials/02.lazyarray-expressions.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@
230230
{
231231
"cell_type": "markdown",
232232
"metadata": {},
233-
"source": "Finally, you can save literal expressions to disk (and only computed results). For this, use the `save` method of ``LazyArray`` objects. For example, let's save the expression `c` to disk:"
233+
"source": "You can save literal expressions to disk (and only computed results). For this, use the `save` method of ``LazyArray`` objects. For example, let's save the expression `c` to disk:"
234234
},
235235
{
236236
"cell_type": "code",
@@ -677,7 +677,7 @@
677677
{
678678
"cell_type": "markdown",
679679
"metadata": {},
680-
"source": "We can also perform reductions on queries on a single field:"
680+
"source": "And perform reductions on queries on a single field:"
681681
},
682682
{
683683
"cell_type": "code",
@@ -707,7 +707,7 @@
707707
{
708708
"cell_type": "markdown",
709709
"metadata": {},
710-
"source": "Finally, we can perform more complex queries using the `where()` function. For example, let's sum all the rows with the maximum of field `A` or field `B`:"
710+
"source": "Finally, more complex queries can be done using the `where()` function. For example, let's sum all the rows with the maximum of field `A` or field `B`:"
711711
},
712712
{
713713
"cell_type": "code",
@@ -737,7 +737,7 @@
737737
{
738738
"cell_type": "markdown",
739739
"metadata": {},
740-
"source": "Combining all this weaponry allows to query your data on a simple and efficient way. As the computation is lazy, all the operations are grouped and executed together for maximum performance. The only exception is that, when a reduction is found, it is computed eagerly, but it still can be part of more general expressions, as well as being able to be saved and loaded from disk."
740+
"source": "Combining all this weaponry allows to query your data on a simple and efficient way. As the computation is lazy, all the operations are grouped and executed together for maximum performance. The only exception is that, when a reduction is found, it is computed eagerly, but it can still be part of more general expressions, as well as being able to be saved and loaded from disk."
741741
},
742742
{
743743
"cell_type": "markdown",

0 commit comments

Comments
 (0)