From b979bd7d5635c654eac0397022e5f2c8fa496da3 Mon Sep 17 00:00:00 2001 From: Charlie Fish Date: Sun, 10 Feb 2019 16:25:22 -0700 Subject: [PATCH] Fixing formatting of documentation --- Documentation/MessageInputBar.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Documentation/MessageInputBar.md b/Documentation/MessageInputBar.md index d0ddc56..43607bd 100644 --- a/Documentation/MessageInputBar.md +++ b/Documentation/MessageInputBar.md @@ -18,14 +18,14 @@ reason is because the `MessageInputBar` is the `inputAccessoryView` of the ```Swift class ParentVC: UIViewController { -override func viewDidLoad() { -super.viewDidLoad() -let childVC = MessagesViewController() -addChildViewController(childVC) -self.view.addSubview(childVC.view) -childVC.didMove(toParentViewController:self) -self.becomeFirstResponder() -} + override func viewDidLoad() { + super.viewDidLoad() + let childVC = MessagesViewController() + addChildViewController(childVC) + self.view.addSubview(childVC.view) + childVC.didMove(toParentViewController:self) + self.becomeFirstResponder() + } } ```