diff options
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 4 |
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!() |