From 90e0dd48e43b13e635996810165a19269394a372 Mon Sep 17 00:00:00 2001 From: oden Date: Mon, 13 Mar 2017 10:05:15 +0900 Subject: [PATCH] =?UTF-8?q?=E4=B8=80=E7=95=AA=E6=9C=80=E5=BE=8C=E3=81=AB?= =?UTF-8?q?=E3=80=8CstrongSelf=E3=81=AF=E4=BD=BF=E7=94=A8=E3=81=97?= =?UTF-8?q?=E3=81=AA=E3=81=84=E3=81=93=E3=81=A8=E3=80=8D=E3=81=A8=E3=81=84?= =?UTF-8?q?=E3=81=86=E4=B8=BB=E6=97=A8=E3=81=AE=E8=AA=AC=E6=98=8E=E3=81=8C?= =?UTF-8?q?=E3=81=82=E3=82=8B=E3=81=AB=E3=82=82=E9=96=A2=E3=82=8F=E3=82=89?= =?UTF-8?q?=E3=81=9A=E3=80=81=E5=89=8D=E5=8D=8A=E3=81=A7=E3=80=8CstrongSel?= =?UTF-8?q?f=E3=80=8D=E3=82=92=E7=94=A8=E3=81=84=E3=81=9F=E3=82=B3?= =?UTF-8?q?=E3=83=BC=E3=83=89=E3=81=8C=E6=AD=A3=E3=81=A7=E3=81=82=E3=82=8B?= =?UTF-8?q?=E3=81=A8=E6=9B=B8=E3=81=8B=E3=82=8C=E3=81=9F=E3=82=B3=E3=83=BC?= =?UTF-8?q?=E3=83=89=E3=81=8C=E3=81=82=E3=82=8B=E3=81=9F=E3=82=81=E3=80=81?= =?UTF-8?q?=E6=94=B9=E4=BF=AE=E3=81=97=E3=81=BE=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 8 ++++---- README_jp.md | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index ec5fcdc..f0c83cf 100644 --- a/README.md +++ b/README.md @@ -666,16 +666,16 @@ if (array.isEmpty) { OKNG
-guard let strongSelf = self else {
+guard let image = image else {
 
     return
 }
-// do many things with strongSelf
+// do many things with image
 
-if let strongSelf = self {
+if let image = image {
 
-    // do many things with strongSelf
+    // do many things with image
 }
 
diff --git a/README_jp.md b/README_jp.md index 6b1b42e..9eb185c 100644 --- a/README_jp.md +++ b/README_jp.md @@ -665,16 +665,16 @@ if (array.isEmpty) { OKNG
-guard let strongSelf = self else {
+guard let image = image else {
 
     return
 }
-// strongSelfを使用したコードをここに書きます
+// imageを使用したコードをここに書きます
 
-if let strongSelf = self {
+if let image = image {
 
-    // strongSelfを使用したコードをここに書きます
+    // imageを使用したコードをここに書きます
 }