From aa14c52d18806c070dfb02280368c3a0f0ccaa57 Mon Sep 17 00:00:00 2001 From: Igor Bogoslavskyi Date: Sat, 3 Feb 2024 20:00:29 +0100 Subject: [PATCH] Fix header names and improve thumbnail --- homeworks/homework_4/homework.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/homeworks/homework_4/homework.md b/homeworks/homework_4/homework.md index 427c479..9253379 100644 --- a/homeworks/homework_4/homework.md +++ b/homeworks/homework_4/homework.md @@ -1,7 +1,7 @@ # Writing a string processing library

- Video + Video

@@ -53,9 +53,9 @@ homework_4/ │ └── trim_strings.cpp ├── no_strings_attached/ │ ├── CMakeLists.txt # Defines all libraries - │ ├── split_string.cpp - │ ├── split_string.h - │ ├── split_string_test.cpp + │ ├── string_split.cpp + │ ├── string_split.h + │ ├── string_split_test.cpp │ └── ... # Same for all other libraries ├── .clang-format └── readme.md # Description of your project. Go nuts! @@ -76,7 +76,7 @@ These libraries must all be defined in the `no_strings_attached/CMakeLists.txt` #### Header files They also should have header files so that they can be included with: -- `#include ` +- `#include ` - `#include ` > :bulb: Such small libraries are a bit excessive for the real world use, but we are learning how to write libraries here, so it'll do :wink: