aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2021-09-29 09:50:06 -0500
committerMatt Strapp <matt@mattstrapp.net>2021-09-29 09:50:06 -0500
commitb99bc5075ddf4e2122fd5b799a66045f92494e66 (patch)
treed7701b6f4376e950b0a69058560878becad2f49c
parentdo more of it (diff)
downloadhomework-b99bc5075ddf4e2122fd5b799a66045f92494e66.tar
homework-b99bc5075ddf4e2122fd5b799a66045f92494e66.tar.gz
homework-b99bc5075ddf4e2122fd5b799a66045f92494e66.tar.bz2
homework-b99bc5075ddf4e2122fd5b799a66045f92494e66.tar.lz
homework-b99bc5075ddf4e2122fd5b799a66045f92494e66.tar.xz
homework-b99bc5075ddf4e2122fd5b799a66045f92494e66.tar.zst
homework-b99bc5075ddf4e2122fd5b799a66045f92494e66.zip
fix word choice
-rw-r--r--csci5271/hw1/hw1writeup.md2
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