diff --git a/hws/02_schedule_classes/README.md b/hws/02_schedule_classes/README.md index a6ff5b3..7707541 100644 --- a/hws/02_schedule_classes/README.md +++ b/hws/02_schedule_classes/README.md @@ -121,7 +121,7 @@ and at the very bottom of your .h file, add this line: If you want to make a vector of vectors of a type (let’s use int in this example) called vectorname, you can do so by writing ```cpp -std::vector<std::vector<int> > vectorname +std::vector > vectorname; ``` and then indexing as usual. *vectorname[0]* will return a vector<int> in this example. The most important detail is to remember to put a space