From 728538e7175bbd30010055fc2090f7bac6019886 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Mon, 25 Nov 2024 14:30:04 +0100 Subject: [PATCH 1/2] InternalDocs: Add String Interning to RAEDME --- InternalDocs/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/InternalDocs/README.md b/InternalDocs/README.md index dbc858b276833c..3ba702dd4f2ede 100644 --- a/InternalDocs/README.md +++ b/InternalDocs/README.md @@ -40,3 +40,8 @@ Program Execution - [Garbage Collector Design](garbage_collector.md) - [Exception Handling](exception_handling.md) + +Other +--- + +- [String Interning](string_interning.md) From 2a4560d2acece71442561d8b1eaa4f651e9d411f Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 26 Nov 2024 10:49:00 +0100 Subject: [PATCH 2/2] Move to Runtime Objects --- InternalDocs/README.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/InternalDocs/README.md b/InternalDocs/README.md index 3ba702dd4f2ede..f6aa3db3b384af 100644 --- a/InternalDocs/README.md +++ b/InternalDocs/README.md @@ -30,6 +30,8 @@ Runtime Objects - [Frames](frames.md) +- [String Interning](string_interning.md) + Program Execution --- @@ -40,8 +42,3 @@ Program Execution - [Garbage Collector Design](garbage_collector.md) - [Exception Handling](exception_handling.md) - -Other ---- - -- [String Interning](string_interning.md)