diff --git a/README.md b/README.md index 68958d0..56f9a85 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ with afar.run, remotely: df = dask_cudf.read_parquet("s3://...") result = df.sum().compute() ``` -`result` is a [Dask Future](https://docs.dask.org/en/latest/futures.html) whose data resides on a worker. `result.result()` is necessary to copy the data locally. +Outside the context, `result` is a [Dask Future](https://docs.dask.org/en/latest/futures.html) whose data resides on a worker. `result.result()` is necessary to copy the data locally. By default, only the last assignment is saved. One can specify which variables to save: ```python @@ -37,4 +37,4 @@ assert data["c"].result() == 3 For motivation, see https://github.com/dask/distributed/issues/4003 -### *This code is highly experimental and magical!* \ No newline at end of file +### *This code is highly experimental and magical!*