Correct my own spelling mistake

This commit is contained in:
Raphael Sofaer 2011-08-11 17:10:49 -07:00
parent 8b99ae9cb6
commit e2b16ab16f
3 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@
.stream_element{:data=>{:guid => note.id}, :class => "#{note.unread ? 'unread' : ''}"}
- if note.type == "Notifications::StartedSharing" && contact = current_user.contact_for(note[:target])
.right
= aspect_memberhip_dropdown(contact, note[:target], 'left')
= aspect_membership_dropdown(contact, note[:target], 'left')
%span.from
= notification_message_for(note)

View file

@ -1,6 +1,6 @@
- unless person == current_user.person
- contact = current_user.contacts.find_by_person_id(person.id)
- contact ||= Contact.new(:person => person)
= aspect_memberhip_dropdown(contact, person, 'left')
= aspect_membership_dropdown(contact, person, 'left')
-else
= t('people.person.thats_you')

View file

@ -1 +1 @@
= aspect_memberhip_dropdown(@contact, @person, 'left')
= aspect_membership_dropdown(@contact, @person, 'left')