Tweak _.defer and _.delay docs. [ci skip]

Former-commit-id: 921eec8f2e8e7701f14095d221a5e72a2c45f470
This commit is contained in:
John-David Dalton
2013-02-19 01:35:31 -08:00
parent 2459a53350
commit 088c621862
5 changed files with 10 additions and 10 deletions

View File

@@ -1945,7 +1945,7 @@ Defers executing the `func` function until the current call stack has cleared. A
2. `[arg1, arg2, ...]` *(Mixed)*: Arguments to invoke the function with.
#### Returns
*(Number)*: Returns the `setTimeout` timeout id.
*(Number)*: Returns the timer id.
#### Example
```js
@@ -1971,7 +1971,7 @@ Executes the `func` function after `wait` milliseconds. Additional arguments wil
3. `[arg1, arg2, ...]` *(Mixed)*: Arguments to invoke the function with.
#### Returns
*(Number)*: Returns the `setTimeout` timeout id.
*(Number)*: Returns the timer id.
#### Example
```js