Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Isaac Good <IsaacG@users.noreply.github.com>
  • Loading branch information
glennj and IsaacG authored Feb 22, 2025
1 parent 943388a commit 79aaad0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions concepts/more-arrays/introduction.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# More about Arrays

We were introduced to arrays in the [Arrays][arrays] chapter.
We introduced arrays in the [Arrays][arrays] chapter.
This document will show more ways to use arrays.

## Concatenating the Elements of an Array into a Single String

In the previous Arrays chapter, you saw `"${myarray[@]}"`, with the `@` index, to expand the array into the individual elements.
In the previous Arrays chapter, you saw `"${myarray[@]}"`, with the `@` index, used to expand the array into the individual elements.
But sometimes you want to join all the elements into a single string.
For this, use the `*` index:

Expand Down

0 comments on commit 79aaad0

Please sign in to comment.