From 3dc96a5714f06bed5f21c99dcf59703478b850ca Mon Sep 17 00:00:00 2001 From: oswin <136856679+fionabos@users.noreply.github.com> Date: Tue, 6 Aug 2024 16:30:15 -0700 Subject: [PATCH] Update docs/genai/tutorials/phi3-android.md Co-authored-by: Sophie Schoenmeyer <107952697+sophies927@users.noreply.github.com> --- docs/genai/tutorials/phi3-android.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/genai/tutorials/phi3-android.md b/docs/genai/tutorials/phi3-android.md index 3601c02c0710c..e15e4463163de 100644 --- a/docs/genai/tutorials/phi3-android.md +++ b/docs/genai/tutorials/phi3-android.md @@ -50,7 +50,7 @@ if (urlFilePairs.isEmpty()) { ``` ### Status while model is downloading -Downloading the packages for the app on your mobile device takes ~10-15 minutes depending on which device you are using. The progress bar indicates what percent of the downloads are completed. +Downloading the packages for the app on your mobile device takes ~10-15 minutes (depending on which device you are using). The progress bar indicates what percent of the downloads are completed. ```java public void onProgress(long lastBytesRead, long bytesRead, long bytesTotal) { long lastPctDone = 100 * lastBytesRead / bytesTotal;