Skip to content

Commit

Permalink
Fix missing register_event() reference on event_enable/disable descri…
Browse files Browse the repository at this point in the history
…ptions (#491)

Lack register_event() on enable_event and disable_event descriptions
  • Loading branch information
SmileYzn authored and Arkshine committed Jul 11, 2018
1 parent cec42bd commit a87eb50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/include/amxmodx.inc
Expand Up @@ -587,7 +587,7 @@ native register_event_ex(const event[], const function[], RegisterEventFlags:fla
/**
* Enables a function hook of a game event which has been previously registered with register_event_ex().
*
* @param handle Value returned from register_event_ex()
* @param handle Value returned from register_event() or register_event_ex()
*
* @noreturn
* @error If an invalid handle is provided, an error will be thrown.
Expand All @@ -597,7 +597,7 @@ native enable_event(handle);
/**
* Disables a function hook of a game event which has been previously registered with register_event_ex().
*
* @param handle Value returned from register_event_ex()
* @param handle Value returned from register_event() or register_event_ex()
*
* @noreturn
* @error If an invalid handle is provided, an error will be thrown.
Expand Down

0 comments on commit a87eb50

Please sign in to comment.