Skip to content

Commit 66e399b

Browse files
HarrisonGrodinfredrikekre
authored andcommitted
Fix attribution of thin arrow anonymous function (#24419)
* Fix attribution of thin arrow anonymous function
1 parent dd0bf99 commit 66e399b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/manual/noteworthy-differences.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ For users coming to Julia from R, these are some noteworthy differences:
121121
of the form `if cond; statement; end`, `cond && statement` and `!cond || statement`. Assignment
122122
statements in the latter two syntaxes must be explicitly wrapped in parentheses, e.g. `cond && (x = value)`.
123123
* In Julia, `<-`, `<<-` and `->` are not assignment operators.
124-
* Julia's `->` creates an anonymous function, like Python.
124+
* Julia's `->` creates an anonymous function.
125125
* Julia constructs vectors using brackets. Julia's `[1, 2, 3]` is the equivalent of R's `c(1, 2, 3)`.
126126
* Julia's [`*`](@ref) operator can perform matrix multiplication, unlike in R. If `A` and `B` are
127127
matrices, then `A * B` denotes a matrix multiplication in Julia, equivalent to R's `A %*% B`.

0 commit comments

Comments
 (0)