From b51588fd225f93d51b2277ac82269dab2ce93922 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 30 Jun 2018 22:53:09 +0100 Subject: [PATCH] dep.js: Report out-of-date deps as being `stale'. It's just shorter. --- dep.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dep.js b/dep.js index ec09e83..50a4fed 100644 --- a/dep.js +++ b/dep.js @@ -235,7 +235,7 @@ Dep.prototype = { s += ' #' + this._seq; // The value, or some kind of marker that it doesn't have one. - if (!(f & F_VALUE)) s += ' #{out-of-date}'; + if (!(f & F_VALUE)) s += ' #{stale}'; else if (v === BAD) s += ' #{bad}'; else s += ' ' + v.toString(); -- 2.11.0