Skip to content

Commit

Permalink
Merge pull request #553 from Simusharp/patch-2
Browse files Browse the repository at this point in the history
Fix a minor typo in load-data-at-startup.md
  • Loading branch information
maxkatz6 authored Oct 29, 2024
2 parents 27d1315 + ed34619 commit 749ad44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/music-store-app/load-data-at-startup.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ As you can see this method uses the business service to load the list of albums

You will notice that after the JSON album files are loaded, the second loop loads the cover art image files. This provides your user with visual feedback as quickly as possible (in the form of album tiles with text and the placeholder music note icon) about what albums are in the collection. The cover art is then loaded asynchronously. This ensures that the app remains responsive during the image loading process.

You next step is to schedule the `LoadAlbum` method to run when the app starts.
Your next step is to schedule the `LoadAlbum` method to run when the app starts.

To schedule the method on the main thread, follow this procedure:

Expand Down

0 comments on commit 749ad44

Please sign in to comment.