Skip to content

Commit

Permalink
Align documentation with code change.
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Jun 27, 2016
1 parent 8c80378 commit 92f11f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/register/register.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { VimState } from './../mode/modeHandler';
* There are two different modes of copy/paste in Vim - copy by character
* and copy by line. Copy by line typically happens in Visual Line mode, but
* also shows up in some other actions that work over lines (most noteably dd,
* yy, and cc).
* yy).
*/
export enum RegisterMode {
FigureItOutFromCurrentMode,
Expand Down
2 changes: 1 addition & 1 deletion test/mode/normalModeTests/commands.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ suite("Mode Normal", () => {
title: "Can handle 'Ncc'",
start: ['one', '|one two', 'three four', 'five'],
keysPressed: '2cca<esc>',
end: ["one","|a", "five"]
end: ["one", "|a", "five"]
});

newTest({
Expand Down

0 comments on commit 92f11f3

Please sign in to comment.