Merge "Documents the meal types." into androidx-main
diff --git a/health/health-connect-client/src/main/java/androidx/health/connect/client/records/MealType.kt b/health/health-connect-client/src/main/java/androidx/health/connect/client/records/MealType.kt
index c4a2852..40299d1 100644
--- a/health/health-connect-client/src/main/java/androidx/health/connect/client/records/MealType.kt
+++ b/health/health-connect-client/src/main/java/androidx/health/connect/client/records/MealType.kt
@@ -20,9 +20,13 @@
 /** Type of meal. */
 public object MealType {
     const val UNKNOWN = "unknown"
+    /** Use this for the first meal of the day, usually the morning meal. */
     const val BREAKFAST = "breakfast"
+    /** Use this for the noon meal. */
     const val LUNCH = "lunch"
+    /** Use this for last meal of the day, usually the evening meal. */
     const val DINNER = "dinner"
+    /** Any meal outside of the usual three meals per day. */
     const val SNACK = "snack"
 }