diff --git a/docs/html/guide/topics/resources/string-resource.jd b/docs/html/guide/topics/resources/string-resource.jd index c8a4d8fa0aa93..621771a536f50 100644 --- a/docs/html/guide/topics/resources/string-resource.jd +++ b/docs/html/guide/topics/resources/string-resource.jd @@ -364,11 +364,10 @@ getQuantityString}(R.plurals.numberOfSongsAvailable, count, count);
When using the {@link android.content.res.Resources#getQuantityString(int,int,int) getQuantityString()} method, you need to pass the {@code count} twice if your string includes string formatting with a number. For example, for the string -{@code %d songs found}, the first {@count} parameter selects the appropriate plural string and the -second {@count} parameter is inserted into the {@code %d} placeholder. If your plural strings do not -include string formatting, you don't need to pass the third parameter to {@link -android.content.res.Resources#getQuantityString(int,int) -getQuantityString}.
+{@code %d songs found}, the first {@code count} parameter selects the appropriate plural string and +the second {@code count} parameter is inserted into the {@code %d} placeholder. If your plural +strings do not include string formatting, you don't need to pass the third parameter to {@link +android.content.res.Resources#getQuantityString(int,int) getQuantityString}.