From 23596e78ffd9f0942bf2b292c6215afa8a9a8d06 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 28 Oct 2024 14:45:15 +0100 Subject: [PATCH] fix: :memo: Complete unfinished sentence --- app/philosophy/principles/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/philosophy/principles/page.mdx b/app/philosophy/principles/page.mdx index 0c497a6..0842424 100644 --- a/app/philosophy/principles/page.mdx +++ b/app/philosophy/principles/page.mdx @@ -6,7 +6,7 @@ When designing basically anything, it is very important to define its principles Entities should contain all the data necessary for their processing (and only theirs) in a single JSON object. This object should also be roughly understandable by a human, and should be able to be serialized and deserialized without loss of information. -This means that headers, transport mechanisms, +This means that headers, transport mechanisms, encoding and other such things should be separate from the data itself. This is to ensure that the data can be processed by any system, regardless of the transport mechanism. ## Determinism