Change comment identifier to be valid JavaScript

Copying and pasting the snippet with `#` as a comment identifier caused an error, so use `//` instead.
This commit is contained in:
Dominic Kuang 2017-06-12 10:35:26 -07:00 committed by GitHub
parent 31400855f8
commit 63cc96ed1c

View File

@ -61,7 +61,7 @@ four spaces. Enter the following code snippet in your JavaScript console::
var config = cell.config;
var patch = {
CodeCell:{
cm_config:{indentUnit: null} # only change here.
cm_config:{indentUnit: null} // only change here.
}
}
config.update(patch)