diff --git a/docs/hooks/hook_civicrm_contact_get_displayname.md b/docs/hooks/hook_civicrm_contact_get_displayname.md index 89b655693810a0a3cd7fc6e9896939f873884a9d..5c845b3847d0dc76df1cd5d21ddf8ebecc6300ab 100644 --- a/docs/hooks/hook_civicrm_contact_get_displayname.md +++ b/docs/hooks/hook_civicrm_contact_get_displayname.md @@ -16,7 +16,7 @@ don't want to store this in the database. ## Parameters -- &$disply_name - the current display name, you can change the +- &$display_name - the current display name, you can change the display name by changing the contents of this parameter - $contactId - Contact ID - $objContact - The contact BAO @@ -31,4 +31,4 @@ Below an example of showing the contact ID after the display name function myextension_civicrm_contact_get_displayname(&$display_name, $contactId, $objContact) { $display_name = $display_name . ' - '.$contactId; - } \ No newline at end of file + }