From 72f3ce75b20787802e5bb53b95f4480aac06e3b2 Mon Sep 17 00:00:00 2001
From: Hans Pagel <hanspagel@users.noreply.github.com>
Date: Mon, 28 Sep 2020 23:29:09 +0200
Subject: [PATCH] fix a small typo (at it heart -> at its heart)

---
 INTERNALS.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/INTERNALS.md b/INTERNALS.md
index d8a03a32..cf3843af 100644
--- a/INTERNALS.md
+++ b/INTERNALS.md
@@ -12,7 +12,7 @@ which aren't described in the paper. The most notable is that items have an
 `originRight` as well as an `origin` property, which improves performance when
 many concurrent inserts happen after the same character.
 
-At it heart, Yjs is a list CRDT. Everything is squeezed into a list in order to
+At its heart, Yjs is a list CRDT. Everything is squeezed into a list in order to
 reuse the CRDT resolution algorithm:
 
 - Arrays are easy - they're lists of arbitrary items.