From 514f8cb139e779026b26d1978056a5c76890a250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Sharma?= <737941+loic-sharma@users.noreply.github.com> Date: Sat, 24 Jun 2023 10:39:19 -0700 Subject: [PATCH] Fix assertion typo --- .../darwin/macos/framework/Source/FlutterViewController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/darwin/macos/framework/Source/FlutterViewController.mm b/shell/platform/darwin/macos/framework/Source/FlutterViewController.mm index 5129ef4ebe0f0..163ffd549d2a4 100644 --- a/shell/platform/darwin/macos/framework/Source/FlutterViewController.mm +++ b/shell/platform/darwin/macos/framework/Source/FlutterViewController.mm @@ -517,7 +517,7 @@ - (void)setBackgroundColor:(NSColor*)color { } - (FlutterViewId)viewId { - NSAssert([self attached], @"This view controller is not attched."); + NSAssert([self attached], @"This view controller is not attached."); return _viewId; }