Skip to content

Commit

Permalink
rename pointer error message
Browse files Browse the repository at this point in the history
  • Loading branch information
benStre committed Jan 18, 2024
1 parent 33afb67 commit 3787f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/pointers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,7 @@ export class Pointer<T = any> extends Ref<T> {
// else
if (!allow_failure) displayFatalError('pointer-not-found');
pointer.delete();
throw new PointerError("Pointer $"+id_string+" has no assigned value", SCOPE);
throw new PointerError("Pointer $"+id_string+" does not exist", SCOPE);
}
}

Expand Down

0 comments on commit 3787f4e

Please sign in to comment.