From 6434580889450320c489dd67e6c3940ba80564c6 Mon Sep 17 00:00:00 2001 From: Vincent Poulailleau Date: Thu, 22 Sep 2022 17:06:19 +0200 Subject: [PATCH] Fix MarkDown syntax --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 08a9668..a2ebc45 100755 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ public class Class { About the porting. -###Naming +### Naming Since `i32vec2` would have been `I32vec2` because java requires always first letter capital, it has been decided to move the type part at the right and changing the bit lenght directly with the primitive data type (`Vec2i32` would have been confusing), so we simply have `Vec2i`. @@ -62,7 +62,7 @@ Since `i32vec2` would have been `I32vec2` because java requires always first let `*` means 1, 2, 3 or 4 for c++, but on java only 2, 3 and 4 because we didn't port any `*vec1` for the moment since there is no apparent reason. -###Instantiation +### Instantiation All functions with any underscore `_` at the end involve implicitly an internal instantiation. They are useful for case scenario when you want the most readable and compact code.