From b14ea8b95d20c5e8f96ee01f9e4cba2e08a3de49 Mon Sep 17 00:00:00 2001 From: Benjamin Chang Date: Mon, 26 Jun 2017 11:01:10 -0500 Subject: [PATCH] Comments to reflect code in ASTableNode performBatchUpdates #trival (#388) --- Source/ASTableNode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ASTableNode.h b/Source/ASTableNode.h index dec925465a..59fb7183e6 100644 --- a/Source/ASTableNode.h +++ b/Source/ASTableNode.h @@ -182,7 +182,7 @@ NS_ASSUME_NONNULL_BEGIN - (void)performBatchAnimated:(BOOL)animated updates:(nullable AS_NOESCAPE void (^)())updates completion:(nullable void (^)(BOOL finished))completion; /** - * Perform a batch of updates asynchronously, optionally disabling all animations in the batch. This method must be called from the main thread. + * Perform a batch of updates asynchronously with animations in the batch. This method must be called from the main thread. * The data source must be updated to reflect the changes before the update block completes. * * @param updates The block that performs the relevant insert, delete, reload, or move operations.