From 715857646096eee6b306e6e464ccc394b2735776 Mon Sep 17 00:00:00 2001 From: Dora Date: Wed, 18 Jun 2025 01:02:58 +0200 Subject: [PATCH] minor styling --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e1c5f4a..3c15a7e 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,11 @@ The Night Club's very own basic image hosting web frontend. # Coing Guidelines -In most of my projects I have less header(h/hpp) files than implementation files(c/cpp). This is very much intentional. I implement parts of a header file for ease of reading. You are expected to NOT make 1 header per 1 implementation file!!! +- In most of my projects I have less header(h/hpp) files than implementation files(c/cpp). This is very much intentional. I implement parts of a header file for ease of reading. You are expected to NOT make 1 header per 1 implementation file!!! -When doing ``#include`` if the same include is used more than once in different implementation files that share a header file. Move the ``#include`` to the header file instead of having two of the same includes. +- When doing ``#include`` if the same include is used more than once in different implementation files that share a header file. Move the ``#include`` to the header file instead of having two of the same includes. -Codebase must adhere to DRY and KISS (DRY KISS) principles! +- Codebase must adhere to DRY and KISS (DRY KISS) principles! # Building