From 5f1ee14b77cb0065a8bde3aa77d99f9c2c51dcd2 Mon Sep 17 00:00:00 2001 From: Vladimir Chernyi <57420464+scalyvladimir@users.noreply.github.com> Date: Fri, 29 Mar 2024 16:57:49 +0300 Subject: [PATCH] typo fix Signed-off-by: Vladimir Chernyi <57420464+scalyvladimir@users.noreply.github.com> --- monai/data/dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monai/data/dataset.py b/monai/data/dataset.py index 531893d768..79e066303e 100644 --- a/monai/data/dataset.py +++ b/monai/data/dataset.py @@ -427,7 +427,7 @@ def _transform(self, index: int): class CacheNTransDataset(PersistentDataset): """ - Extension of `PersistentDataset`, tt can also cache the result of first N transforms, no matter it's random or not. + Extension of `PersistentDataset`, it can also cache the result of first N transforms, no matter it's random or not. """