minor comment fixes
authorEileen McNaughton <eileen@fuzion.co.nz>
Sat, 24 May 2014 04:12:06 +0000 (16:12 +1200)
committerEileen McNaughton <eileen@fuzion.co.nz>
Sat, 24 May 2014 05:48:57 +0000 (17:48 +1200)
api/v3/MembershipStatus.php
api/v3/ParticipantStatusType.php
api/v3/WordReplacement.php

index a02cd3c484e1410a3c7d1d0b8c707944cb1d9b69..ddaf0bc6e15b3a6fdf241ea05340e37fec64fe0d 100644 (file)
@@ -81,7 +81,7 @@ function civicrm_api3_membership_status_get($params) {
  * 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
index 43b8b30534cfd6c2f51fa09a08dc692e30d13bec..48c435c6a961307fada002acf89869159cade4df 100644 (file)
@@ -80,8 +80,7 @@ function civicrm_api3_participant_status_type_get($params) {
  * @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
index 01d92f49bf11d5222c485a4657963e26a6a88234..a504f15cb1936c75a8b682a498dd34a3411a0adf 100644 (file)
@@ -40,7 +40,7 @@
 /**
  * Get CiviCRM Word Replacement details
  * {@getfields word_replacement_create}
- * 
+ *
  */
 function civicrm_api3_word_replacement_get($params) {
   $bao = new CRM_Core_BAO_WordReplacement();
@@ -57,7 +57,7 @@ function civicrm_api3_word_replacement_get($params) {
  * @param array $params
  *
  * @return array
- * 
+ *
  * {@getfields word_replacement_create}
  */
 function civicrm_api3_word_replacement_create($params) {
@@ -78,14 +78,13 @@ function _civicrm_api3_word_replacement_create_spec(&$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
+}