Skip to content

Commit

Permalink
Fixed typo in README
Browse files Browse the repository at this point in the history
  • Loading branch information
Faltenreich committed Jun 3, 2018
1 parent a4f58f4 commit 4b1fbf9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ public class MainActivity extends AppCompatActivity {
skeleton.showSkeleton();
}

private fun onDataLoaded() {
// Example callback that hides skeleton
private void onDataLoaded() {
skeleton.showOriginal();
}
}
Expand Down Expand Up @@ -108,6 +109,7 @@ class MainActivity : AppCompatActivity() {
skeleton.showSkeleton()
}

// Example callback that hides skeleton
private fun onDataLoaded() {
skeleton.showOriginal()
}
Expand Down

0 comments on commit 4b1fbf9

Please sign in to comment.