From c94e482702ee86a04004b3d2919ed6c6ccb62d9c Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Fri, 22 Sep 2023 00:21:36 -0400 Subject: [PATCH] adding link to sample output file --- hws/03_matrix_class/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hws/03_matrix_class/README.md b/hws/03_matrix_class/README.md index aae1aab..b82a46d 100644 --- a/hws/03_matrix_class/README.md +++ b/hws/03_matrix_class/README.md @@ -199,7 +199,7 @@ the Matrix class we should not be writing template class anywhere. --> As you implement your classes, be careful with return types, the const keyword, and passing by reference. If you have correctly implemented the Matrix class, then running the provided [matrix_main.cpp](matrix_main.cpp) file with -your class, should produce the output provided in sample output.txt. We are not going to be particularly +your class, should produce the output provided in [sample_output.txt](sample_output.txt). We are not going to be particularly picky about differences in whitespace, but you should be making an effort to try and match both spacing and newlines between our output and your output.