From 6a9ea84bc4410f314aaec8beb753087c0a016d2b Mon Sep 17 00:00:00 2001 From: Jiahao Date: Tue, 1 Oct 2019 17:25:15 -0700 Subject: [PATCH] Fix parameter naming in docs --- .../ios/framework/Headers/FlutterViewController.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/shell/platform/darwin/ios/framework/Headers/FlutterViewController.h b/shell/platform/darwin/ios/framework/Headers/FlutterViewController.h index e71b078524a36..7b77a7cc5b8b1 100644 --- a/shell/platform/darwin/ios/framework/Headers/FlutterViewController.h +++ b/shell/platform/darwin/ios/framework/Headers/FlutterViewController.h @@ -53,8 +53,8 @@ FLUTTER_EXPORT * The initialized viewcontroller will attach itself to the engine as part of this process. * * @param engine The `FlutterEngine` instance to attach to. - * @param nibNameOrNil The NIB name to initialize this UIViewController with. - * @param nibBundleOrNil The NIB bundle. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. */ - (instancetype)initWithEngine:(FlutterEngine*)engine nibName:(nullable NSString*)nibName @@ -64,9 +64,9 @@ FLUTTER_EXPORT * Initializes a new FlutterViewController and `FlutterEngine` with the specified * `FlutterDartProject`. * - * @param projectOrNil The `FlutterDartProject` to initialize the `FlutterEngine` with. - * @param nibNameOrNil The NIB name to initialize this UIViewController with. - * @param nibBundleOrNil The NIB bundle. + * @param project The `FlutterDartProject` to initialize the `FlutterEngine` with. + * @param nibName The NIB name to initialize this UIViewController with. + * @param nibBundle The NIB bundle. */ - (instancetype)initWithProject:(nullable FlutterDartProject*)project nibName:(nullable NSString*)nibName