Clarify Core usage in garbage collector tutorial - #3682
Conversation
|
Hi! Just checking whether there are any changes needed from my side. Happy to update the PR if required. Thanks! |
|
Hi @adithn875. Thanks for your PR. I concur with you, we should work around the
What's your opinion on this? |
|
Thanks for the detailed feedback! I think that approach makes a lot of sense. Keeping the original text unchanged while providing a clear Stdlib alternative through a preamble and appendix seems like a good balance. It preserves the source material and also helps readers who aren't using Core. I'll work on restructuring the PR accordingly:
Thanks for the guidance! |
Fixes #3664
Add a note clarifying that examples using
Gc.tunerely on Jane Street's Core library.This helps readers who are using only the OCaml standard library understand that
Gc.tuneis not part of Stdlib and that similar functionality can be achieved usingGc.getandGc.set.