From f69f56cb5700de6b7e5221e9f55171af5d7e6604 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20H=C3=A1dl?= Date: Tue, 14 May 2019 15:23:24 +0200 Subject: [PATCH] Fix missing space in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cd43ce8..da7d437 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ func keyboardWillAppear(_ info: KeyboardAppearanceInfo) { self.scrollView.contentInset = insets self.scrollView.scrollIndicatorInsets = insets }, - completion:nil) + completion: nil) } func keyboardWillDisappear(_ info: KeyboardAppearanceInfo) { @@ -83,7 +83,7 @@ func keyboardWillDisappear(_ info: KeyboardAppearanceInfo) { self.scrollView.contentInset = insets self.scrollView.scrollIndicatorInsets = insets }, - completion:nil) + completion: nil) } ```