From 1d505b07009d835f56cfc3550edb2abd1493f669 Mon Sep 17 00:00:00 2001 From: Carl Smith Date: Mon, 5 Oct 2020 23:51:28 +0100 Subject: [PATCH] Removed inconsistent typography (bold bullet list header). --- raylib-architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib-architecture.md b/raylib-architecture.md index 9f6f7ed..aa3dcbd 100644 --- a/raylib-architecture.md +++ b/raylib-architecture.md @@ -2,7 +2,7 @@ raylib is a highly modular library. Everything is contained within a small number of well defined, specific and self-contained modules, each organized according to its primary functionality (nicely avoiding the huge tree of recursive dependencies, typical of other C libraries). -**raylib has seven main modules:** +raylib has seven main modules: - [`core`](https://github.com/raysan5/raylib/blob/master/src/core.c): Window / Graphic Context / Inputs management. - [`rlgl`](https://github.com/raysan5/raylib/blob/master/src/rlgl.h): Graphic API (OpenGL) wrapper and pseudo-OpenGL 1.1 translation layer. - [`shapes`](https://github.com/raysan5/raylib/blob/master/src/shapes.c): Basic 2D shapes drawing functions.