From 0567011a11f5147e487e9532abec1f47a54e7397 Mon Sep 17 00:00:00 2001
From: Luigi Pinca <luigipinca@gmail.com>
Date: Wed, 27 Nov 2024 15:11:49 +0100
Subject: [PATCH] doc: add history entry for textEncoder.encodeInto()

Fixes: https://github.com/nodejs/node/issues/55938
PR-URL: https://github.com/nodejs/node/pull/55990
Refs: https://github.com/nodejs/node/pull/29524
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: LiviaMedeiros <livia@cirno.name>
---
 doc/api/util.md | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/doc/api/util.md b/doc/api/util.md
index cf193528368188..fd181e3b299798 100644
--- a/doc/api/util.md
+++ b/doc/api/util.md
@@ -2166,6 +2166,10 @@ encoded bytes.
 
 ### `textEncoder.encodeInto(src, dest)`
 
+<!-- YAML
+added: v12.11.0
+-->
+
 * `src` {string} The text to encode.
 * `dest` {Uint8Array} The array to hold the encode result.
 * Returns: {Object}