From faa7eabed4ca01fda56a5ce96fd62b64e02729b1 Mon Sep 17 00:00:00 2001 From: Matthias Bussonnier Date: Wed, 13 May 2015 10:31:39 -0700 Subject: [PATCH] clarify warning message. --- jupyter_notebook/static/notebook/js/cell.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyter_notebook/static/notebook/js/cell.js b/jupyter_notebook/static/notebook/js/cell.js index 4e34e2eec..3f9e4e306 100644 --- a/jupyter_notebook/static/notebook/js/cell.js +++ b/jupyter_notebook/static/notebook/js/cell.js @@ -76,7 +76,7 @@ define([ // backward compat. Object.defineProperty(this, 'cm_config', { get: function() { - console.warn("warning you are accessing a deprecated field") + console.warn("Warning: accessing Cell.cm_config directly is deprecate.") return that._options.cm_config; }, });