From 7f55b1af552130e6bf997bbabf28c470d42356b8 Mon Sep 17 00:00:00 2001 From: mizulu <202852165+mizulu@users.noreply.github.com> Date: Tue, 1 Jul 2025 19:05:06 -0400 Subject: [PATCH] docs: fix missing word in the bundler text loader section (#20723) --- docs/bundler/loaders.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bundler/loaders.md b/docs/bundler/loaders.md index 440e579274..c098dae8dd 100644 --- a/docs/bundler/loaders.md +++ b/docs/bundler/loaders.md @@ -137,7 +137,7 @@ console.log(contents); // => "Hello, world!" import html from "./index.html" with { type: "text" }; ``` -When referenced during a build, the contents are into the bundle as a string. +When referenced during a build, the contents are inlined into the bundle as a string. ```ts var contents = `Hello, world!`;