Skip to content
This repository was archived by the owner on Oct 27, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -666,16 +666,16 @@ if (array.isEmpty) {
<tr><th>OK</th><th>NG</th></tr>
<tr>
<td><pre lang=swift>
guard let strongSelf = self else {
guard let image = image else {

return
}
// do many things with strongSelf
// do many things with image
</pre></td>
<td><pre lang=swift>
if let strongSelf = self {
if let image = image {

// do many things with strongSelf
// do many things with image
}
</pre></td>
</tr>
Expand Down
8 changes: 4 additions & 4 deletions README_jp.md
Original file line number Diff line number Diff line change
Expand Up @@ -665,16 +665,16 @@ if (array.isEmpty) {
<tr><th>OK</th><th>NG</th></tr>
<tr>
<td><pre lang=swift>
guard let strongSelf = self else {
guard let image = image else {

return
}
// strongSelfを使用したコードをここに書きます
// imageを使用したコードをここに書きます
</pre></td>
<td><pre lang=swift>
if let strongSelf = self {
if let image = image {

// strongSelfを使用したコードをここに書きます
// imageを使用したコードをここに書きます
}
</pre></td>
</tr>
Expand Down