]> git.proxmox.com Git - pve-eslint.git/blobdiff - eslint/docs/rules/array-callback-return.md
upgrade to v7.0.0
[pve-eslint.git] / eslint / docs / rules / array-callback-return.md
index c0a5ad8ab3510e48ff929428d49f93c0d088747f..84bf0e7710d556f5133ae1bdb079a2a99afff91e 100644 (file)
@@ -13,7 +13,7 @@ var indexMap = myArray.reduce(function(memo, item, index) {
 ## Rule Details
 
 This rule enforces usage of `return` statement in callbacks of array's methods.
-Additionaly, it may also enforce the `forEach` array method callback to __not__ return a value by using the `checkForEach` option.
+Additionally, it may also enforce the `forEach` array method callback to __not__ return a value by using the `checkForEach` option.
 
 This rule finds callback functions of the following methods, then checks usage of `return` statement.