diff options
author | Doug Kearns <dougkearns@gmail.com> | 2009-06-08 22:36:09 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2009-06-08 23:37:06 +1000 |
commit | f37a0a37b3c930b71cc3a63bc6a9c3cd6d103962 (patch) | |
tree | e29ad6ec319abacf53d87d3338ce87ee5746bb0c /common/content/buffer.js | |
parent | cc60df5bb76e941e957e34d7fe6ad64617ad1572 (diff) | |
download | pentadactyl-f37a0a37b3c930b71cc3a63bc6a9c3cd6d103962.tar.gz |
Fix some heinous comment formatting errors.
Diffstat (limited to 'common/content/buffer.js')
-rw-r--r-- | common/content/buffer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/buffer.js b/common/content/buffer.js index 173cfa95..916326dc 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -1030,7 +1030,7 @@ function Buffer() //{{{ let selController = this.selectionController; let caretmode = selController.getCaretEnabled(); selController.setCaretEnabled(true); - //Only move backwards if the previous character is not a space. + // Only move backwards if the previous character is not a space. if (range.startOffset > 0 && !/\s/.test(range.startContainer.textContent[range.startOffset - 1])) selController.wordMove(false, false); |