From 057ccfbde6f63891a869898057345a515f74edd7 Mon Sep 17 00:00:00 2001 From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com> Date: Fri, 2 Jan 2026 16:20:03 -0300 Subject: [PATCH 1/2] docs(code-style): avoid using whitespace to replace tab characters Close #56 --- code-style.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code-style.md b/code-style.md index 140f540..e27742e 100644 --- a/code-style.md +++ b/code-style.md @@ -1,6 +1,6 @@ -## Flowing Code Style Guide / 1.0.3 +# Flowing Code Style Guide / 1.0.4 -In any file format, avoid using tab characters to replace a fixed amount of whitespace in any file format, as their display can differ across devices and platforms. +In any file format, avoid using tab characters to replace a fixed amount of whitespace (or vice versa), as their display can differ across devices and platforms. ### Java From a054f87b8bbf4a5d82e88b760d69dcbd2360a8bc Mon Sep 17 00:00:00 2001 From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com> Date: Thu, 8 Jan 2026 10:31:50 -0300 Subject: [PATCH 2/2] WIP: clarify the meaning of "replace" --- code-style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code-style.md b/code-style.md index e27742e..0f0522c 100644 --- a/code-style.md +++ b/code-style.md @@ -1,6 +1,6 @@ # Flowing Code Style Guide / 1.0.4 -In any file format, avoid using tab characters to replace a fixed amount of whitespace (or vice versa), as their display can differ across devices and platforms. +In any file format, maintain a consistent style for indentation and alignment throughout the entire file. Do not use tab characters on some lines and a fixed amount of whitespace on others, as their display can differ across devices and platforms. ### Java