* Update an existing membership status
*
* This api is used for updating an existing membership status.
- * Required parrmeters : id of a membership status
+ * Required parameters : id of a membership status
*
* @param Array $params an associative array of name/value property values of civicrm_membership_status
* @deprecated - should just use create
* @param array $params (reference) array containing id of the group
* to be deleted
*
- * @return array (referance) returns flag true if successfull, error
- * message otherwise
+ * @return array api result array
* {@getfields ParticipantStatusType_delete}
* @example ParticipantStatusTypeDelete.php
* @access public
/**
* Get CiviCRM Word Replacement details
* {@getfields word_replacement_create}
- *
+ *
*/
function civicrm_api3_word_replacement_get($params) {
$bao = new CRM_Core_BAO_WordReplacement();
* @param array $params
*
* @return array
- *
+ *
* {@getfields word_replacement_create}
*/
function civicrm_api3_word_replacement_create($params) {
* delete an existing word_replacement
*
*
- * @param array $params (reference) array containing id of the word_replacement
- * to be deleted
+ * @param array $params array containing id of the word_replacement
+ * to be deleted
*
- * @return array (referance) returns flag true if successfull, error
- * message otherwise
+ * @return array api result array
*
* @access public
*/
function civicrm_api3_word_replacement_delete($params) {
return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
-}
\ No newline at end of file
+}