Skip to content

Commit

Permalink
Merge pull request #42 from denis-zavgorodny/patch-1
Browse files Browse the repository at this point in the history
Change documentation for function R.adjust (0.24.1 -> 0.26.1)
  • Loading branch information
ivanzusko authored Mar 7, 2019
2 parents fa094dd + 1e30e84 commit ec901c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,10 @@ _Додано у версії v0.14.0_
Дивіться також [update](https://github.com/ivanzusko/ramda/blob/master/DOCUMENTATION.md#update).

```javascript
R.adjust(R.add(10), 1, [1, 2, 3]); //=> [1, 12, 3]
R.adjust(R.add(10))(1)([1, 2, 3]); //=> [1, 12, 3]
R.adjust(1, R.add(10), [1, 2, 3]); //=> [1, 12, 3]
R.adjust(1)(R.add(10))([1, 2, 3]); //=> [1, 12, 3]
```
Спробуйте у [REPL](http://ramdajs.com/repl/?v=0.24.1#?R.adjust%28R.add%2810%29%2C%201%2C%20%5B1%2C%202%2C%203%5D%29%3B%20%20%20%20%20%2F%2F%3D%3E%20%5B1%2C%2012%2C%203%5D%0AR.adjust%28R.add%2810%29%29%281%29%28%5B1%2C%202%2C%203%5D%29%3B%20%20%20%20%20%2F%2F%3D%3E%20%5B1%2C%2012%2C%203%5D)
Спробуйте у [REPL](https://ramdajs.com/repl/?v=0.26.1#?R.adjust%281%2C%20R.add%2810%29%2C%20%5B1%2C%202%2C%203%5D%29%3B%20%20%20%20%20%2F%2F%3D%3E%20%5B1%2C%2012%2C%203%5D%0AR.adjust%281%29%28R.add%2810%29%29%28%5B1%2C%202%2C%203%5D%29%3B%20%20%20%20%20%2F%2F%3D%3E%20%5B1%2C%2012%2C%203%5D)

**[⬆ вверх](#Документація)**

Expand Down

0 comments on commit ec901c0

Please sign in to comment.