Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion learn/best_practices/arrays.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ end function
```

Finally, there are *assumed-size* arrays, which provide the least compile-time and run-time
checking and can be found be found frequently in legacy code. They should be avoided
checking and can be found frequently in legacy code. They should be avoided
in favour of *assumed-shape* or *assumed-rank* arrays.
An *assumed-size* array dummy argument is identified by an asterisk as the last dimension,
this disables the usage of this array with many intrinsic functions, like ``size`` or
Expand Down