From c508cc6a2e3000a9d87d2f8c611aae8733be07bf Mon Sep 17 00:00:00 2001 From: Dom Date: Tue, 6 Aug 2024 14:46:25 +0100 Subject: [PATCH] Add missing spacing after full-stops (#9318) --- doc/user-guide/terminology.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/user-guide/terminology.rst b/doc/user-guide/terminology.rst index 140f3dd1faa..2199f232e3f 100644 --- a/doc/user-guide/terminology.rst +++ b/doc/user-guide/terminology.rst @@ -223,9 +223,9 @@ complete examples, please consult the relevant documentation.* lazy Lazily-evaluated operations do not load data into memory until necessary. Instead of doing calculations right away, xarray lets you plan what calculations you want to do, like finding the - average temperature in a dataset.This planning is called "lazy evaluation." Later, when + average temperature in a dataset. This planning is called "lazy evaluation." Later, when you're ready to see the final result, you tell xarray, "Okay, go ahead and do those calculations now!" - That's when xarray starts working through the steps you planned and gives you the answer you wanted.This + That's when xarray starts working through the steps you planned and gives you the answer you wanted. This lazy approach helps save time and memory because xarray only does the work when you actually need the results.