You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation in map2.R inherits from map.R for the Value section:
#' @inherit map return
This is okay for the first 3 bullets. However, for the final bullet, the map2.R documentation still refers to walk() instead of walk2():
walk() returns the input .x (invisibly). This makes it easy to use in a pipe. The return value of .f() is ignored.
I think it's important to specify that walk2() returns the first of its two arguments, (fortunately still named .x). It's a small change, but it clarifies behavior that could be potentially confusing.
The documentation in
map2.R
inherits frommap.R
for the Value section:This is okay for the first 3 bullets. However, for the final bullet, the
map2.R
documentation still refers towalk()
instead ofwalk2()
:I think it's important to specify that
walk2()
returns the first of its two arguments, (fortunately still named.x
). It's a small change, but it clarifies behavior that could be potentially confusing.Link to online
map2.R
documentationThe text was updated successfully, but these errors were encountered: