Here are the changes to make:
1. In app/views/people/index.html.erb, change "Listing people" to "My Class List"
2. Update the each loop to display first initial and last name:
<% @people.each do |person| %>
<td><%= person.first_name[0] %>. <%= person.last_name %></td>
<% end %>