From 355b71f1775ec79d537f0812839f2b9767633b5d Mon Sep 17 00:00:00 2001 From: vinayakrana <95575600+vinayakrana@users.noreply.github.com> Date: Wed, 18 Dec 2024 00:39:28 +0530 Subject: [PATCH] Fix: Correct grammar in Task class method description Corrected the grammatical issue in the sentence describing the methods of The Task class. Specifically, added the missing preposition "to" in the phrase "applying processing operations to the data" to improve readability and correctness. --- docs/user-guide/task.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user-guide/task.ipynb b/docs/user-guide/task.ipynb index 4c2eaafa..afc9d55e 100644 --- a/docs/user-guide/task.ipynb +++ b/docs/user-guide/task.ipynb @@ -281,7 +281,7 @@ "metadata": {}, "source": [ "### Task methods\n", - "The `Task` class also contains methods for applying processing operations the data (like removing NaNs, adding batch dimensions, etc.).\n", + "The `Task` class also contains methods for applying processing operations to the data (like removing NaNs, adding batch dimensions, etc.).\n", "These operations will be recorded in the order they were applied the `\"ops\"` entry of the `Task`.\n", "Operations can be chained together, for example:" ]