From 137bcf141791f4b7eb8d6a45780b368a0a2d56e2 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 11 Feb 2025 23:34:39 -0500 Subject: [PATCH] fixing syntax error --- labs/list_iterators_new/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/labs/list_iterators_new/README.md b/labs/list_iterators_new/README.md index 1d3e4f7..1e6c472 100644 --- a/labs/list_iterators_new/README.md +++ b/labs/list_iterators_new/README.md @@ -18,7 +18,7 @@ A GIF image fileis composed of a sequence of **frames**. Each frame is a static ## Lab Tasks -In this lab, you will modify an existing C++ program. This program reverse a GIF image file. +In this lab, you will modify an existing C++ program. This program reverses a GIF image file. Here are examples of reversing GIF. @@ -73,7 +73,7 @@ public: }; ``` -When given an input GIF image file, the starter code extracts all frames from this image file, and store these frames in a std::vector named frames. This frames vector will then be passed to a function *reverseFrames* which reverses the vector. The *reverseFrames* function will return an std::vector which contains the reversed frames. This reversed frames vector is then passed to a function writeGif(), which just writes all frames in a new GIF image file. +When given an input GIF image file, the starter code extracts all frames from this image file, and store these frames in an std::vector named frames. This frames vector will then be passed to a function *reverseFrames* which reverses the vector. The *reverseFrames* function will return an std::vector which contains the reversed frames. This reversed frames vector is then passed to a function writeGif(), which just writes all frames in a new GIF image file. In this lab, multiple copies of the starter code will be provided, but you will only be working on the *reverseFrames* function - you will be required to re-write this function in different ways.