1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-31 16:57:34 +00:00

Change "retain" to "ref" in various comments.

This commit is contained in:
Andreas Kling 2019-06-21 18:40:24 +02:00
parent 90b1354688
commit c26e3ce86b
4 changed files with 6 additions and 6 deletions

View file

@ -17,7 +17,7 @@ namespace AK {
// Note that StringImpl is an immutable object that cannot shrink or grow.
// Its allocation size is snugly tailored to the specific string it contains.
// Copying a String is very efficient, since the internal StringImpl is
// retainable and so copying only requires modifying the retain count.
// retainable and so copying only requires modifying the ref count.
//
// There are three main ways to construct a new String:
//