in FriendlyEats/RestaurantDetailViewController.swift [176:182]
func populate(restaurant: Restaurant) {
nameLabel.text = restaurant.name
starsView.rating = Int(restaurant.averageRating.rounded())
categoryLabel.text = restaurant.category
cityLabel.text = restaurant.city
priceLabel.text = priceString(from: restaurant.price)
}