Skip to content

Commit

Permalink
[docs] update getting_started_with_julia.jl (#3534)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored Oct 5, 2023
1 parent df022a5 commit 4a716c3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ isapprox(1e-9, 0.0; atol = 1e-8)
# It's important to note that this issue isn't Julia-specific. It happens in
# every programming language (try it out in Python).

# ## Vectors, matrices and arrays
# ## Vectors, matrices, and arrays

# Similar to MATLAB, Julia has native support for vectors, matrices and tensors;
# all of which are represented by arrays of different dimensions. Vectors are
Expand Down Expand Up @@ -626,7 +626,7 @@ end #hide
# the opening `(`. This works for _any_ function, including functions with
# multiple arguments. For example:

f.([1, 2, 3])
foo.([1, 2, 3])

# !!! tip
# Get a `MethodError` when calling a function that takes a `Vector`,
Expand Down

0 comments on commit 4a716c3

Please sign in to comment.