From 91b2a989e2ca50ccfe75aa70ee05b242cd94311d Mon Sep 17 00:00:00 2001 From: mcsquizzy123 Date: Mon, 19 Mar 2018 18:37:49 -0700 Subject: [PATCH] typo fixes - heaer and haeder --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 84b321e..e10597f 100644 --- a/README.md +++ b/README.md @@ -161,7 +161,7 @@ If you want to use inline versions of funcstions then; include main header ```C #include ``` -the haeder will include all headers. Then call func you want e.g. rotate vector by axis: +the header will include all headers. Then call func you want e.g. rotate vector by axis: ```C glm_vec_rotate(v1, glm_rad(45), (vec3){1.0f, 0.0f, 0.0f}); ``` @@ -180,7 +180,7 @@ to call pre-compiled versions include header with `c` postfix, c means call. Pre ```C #include ``` -this header will include all heaers with c postfix. You need to call functions with c posfix: +this header will include all headers with c postfix. You need to call functions with c posfix: ```C glmc_vec_normalize(vec); ```