diff options
Diffstat (limited to 'csci5271/hw1/hw1writeup.md')
-rw-r--r-- | csci5271/hw1/hw1writeup.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csci5271/hw1/hw1writeup.md b/csci5271/hw1/hw1writeup.md index aab6154..e42231e 100644 --- a/csci5271/hw1/hw1writeup.md +++ b/csci5271/hw1/hw1writeup.md @@ -93,7 +93,7 @@ void reverse_range(int *a, int from, int to) { } ``` -The main difference is that the function needs the size of the array since it can't be found from the function itself. +The main difference is that the function needs the size of the array since it can't be found from the scope of the function itself. ## Q5 |