summaryrefslogtreecommitdiff
path: root/core/lib.rs
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2023-02-05 17:49:20 +0100
committerGitHub <noreply@github.com>2023-02-05 17:49:20 +0100
commit84a96110cd8e74228fbab666e7af49edb7e24cc9 (patch)
tree8e1995e6ddb3836923f50e915294664aa27b7511 /core/lib.rs
parenta09296322e1fd4451e903515a497d9e02e14ace6 (diff)
refactor: rename `deno` specifiers to `internal` (#17655)
Diffstat (limited to 'core/lib.rs')
-rw-r--r--core/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/lib.rs b/core/lib.rs
index 2333ff75f..461b4fd20 100644
--- a/core/lib.rs
+++ b/core/lib.rs
@@ -134,12 +134,12 @@ pub mod _ops {
/// A helper macro that will return a call site in Rust code. Should be
/// used when executing internal one-line scripts for JsRuntime lifecycle.
///
-/// Returns a string in form of: "`[deno:<filename>:<line>:<column>]`"
+/// Returns a string in form of: "`[internal:<filename>:<line>:<column>]`"
#[macro_export]
macro_rules! located_script_name {
() => {
format!(
- "[deno:{}:{}:{}]",
+ "[internal:{}:{}:{}]",
std::file!(),
std::line!(),
std::column!()