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) {
-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
}
-guard let strongSelf = self else {
+guard let image = image else {
return
}
-// strongSelfを使用したコードをここに書きます
+// imageを使用したコードをここに書きます
-if let strongSelf = self {
+if let image = image {
- // strongSelfを使用したコードをここに書きます
+ // imageを使用したコードをここに書きます
}