Skip to content

Commit 87fd62c

Browse files
Update doc/src/manual/noteworthy-differences.md
Co-authored-by: Fredrik Ekre <ekrefredrik@gmail.com>
1 parent 21fae28 commit 87fd62c

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
@@ -220,7 +220,7 @@ For users coming to Julia from R, these are some noteworthy differences:
220220
the function `f(x=rand()) = x` returns a new random number every time it is invoked without argument.
221221
On the other hand, the function `g(x=[1,2]) = push!(x,3)` returns `[1,2,3]` every time it is called
222222
as `g()`.
223-
* In Julia, keyword arguments must be passed using keywords, unlike python in which it is usually possible
223+
* In Julia, keyword arguments must be passed using keywords, unlike Python in which it is usually possible
224224
to pass them positionally. Attempting to pass a keyword argument positionally alters the method
225225
signature leading to a `MethodError` or calling of the wrong method.
226226
* In Julia `%` is the remainder operator, whereas in Python it is the modulus.

0 commit comments

Comments
 (0)