From fb37e2077c8e60c356f58d539b13fb3a9a19a1b2 Mon Sep 17 00:00:00 2001 From: Dave Nicolson Date: Wed, 27 Mar 2024 01:28:58 -0700 Subject: [PATCH] Fix typo (#854) Summary: Pull Request resolved: https://github.com/facebook/idb/pull/854 Reviewed By: fgasperij Differential Revision: D55406965 fbshipit-source-id: bd4473d41c1b6fc02976c15bb8f7cbca2c5b9f2a --- FBDeviceControl/Management/FBSpringboardServicesClient.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FBDeviceControl/Management/FBSpringboardServicesClient.m b/FBDeviceControl/Management/FBSpringboardServicesClient.m index cc151904..74fd888e 100644 --- a/FBDeviceControl/Management/FBSpringboardServicesClient.m +++ b/FBDeviceControl/Management/FBSpringboardServicesClient.m @@ -267,7 +267,7 @@ static size_t IconLayoutSize = 4; if (![self.connection sendMessage:@{@"command": @"setIconState", @"iconState": iconLayout} error:error]) { return nil; } - // Recieve some data to know that it reached the other side, in the event of a failure we will recive no bytes. + // Recieve some data to know that it reached the other side, in the event of a failure we will receive no bytes. NSData *data = [self.connection receive:IconLayoutSize error:error]; if (!data) { return nil;