Skip to content

Fix signatures of multiple functions #1067

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Nov 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions entries/callbacks.fireWith.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<title>callbacks.fireWith()</title>
<signature>
<added>1.7</added>
<argument name="context" optional="true">
<argument name="context" optional="true" type="Anything">
<desc>A reference to the context in which the callbacks in the list should be fired.</desc>
</argument>
<argument name="args" optional="true">
<desc>An argument, or array of arguments, to pass to the callbacks in the list.</desc>
<argument name="args" optional="true" type="ArrayLikeObject">
<desc>An array or array-like object of arguments to pass to the callbacks in the list. If omitted or undefined, no arguments will be passed.</desc>
</argument>
</signature>
<desc>Call all callbacks in a list with the given context and arguments.</desc>
Expand Down
2 changes: 1 addition & 1 deletion entries/event.stopImmediatePropagation.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<entry type="method" name="event.stopImmediatePropagation" return="">
<entry type="method" name="event.stopImmediatePropagation" return="undefined">
<title>event.stopImmediatePropagation()</title>
<signature>
<added>1.3</added>
Expand Down
2 changes: 1 addition & 1 deletion entries/event.stopPropagation.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<entry type="method" name="event.stopPropagation" return="">
<entry type="method" name="event.stopPropagation" return="undefined">
<title>event.stopPropagation()</title>
<signature>
<added>1.0</added>
Expand Down
2 changes: 1 addition & 1 deletion entries/jQuery.ajaxSetup.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<entry type="method" name="jQuery.ajaxSetup" return="">
<entry type="method" name="jQuery.ajaxSetup" return="PlainObject">
<title>jQuery.ajaxSetup()</title>
<signature>
<added>1.1</added>
Expand Down
2 changes: 1 addition & 1 deletion entries/jQuery.globalEval.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0"?>
<entry type="method" name="jQuery.globalEval" return="">
<entry type="method" name="jQuery.globalEval" return="Anything">
<title>jQuery.globalEval()</title>
<signature>
<added>1.0.4</added>
Expand Down