Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 794e099

Browse files
committed
chore(release): changelog styling
1 parent c8c005f commit 794e099

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

CHANGELOG.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -46,26 +46,26 @@ _Note: Major version 0 releases are for initial development, and backwards incom
4646

4747
window.clientSideScripts.findInputs(document, 'username');
4848

49-
Also, any custom locators using addLocator will now break since the
50-
arguments order has chnaged. To migrate the code follow the example below:
49+
Also, any custom locators using addLocator will now break since the
50+
arguments order has chnaged. To migrate the code follow the example below:
5151

5252
Before:
5353

5454
var findMenuItem = function() {
55-
var domScope = arguments[0];
56-
var myArg = arguments[1];
57-
// balh blah blah
58-
};
59-
by.addLocator('menuItem', findMenuItem);
55+
var domScope = arguments[0];
56+
var myArg = arguments[1];
57+
// balh blah blah
58+
};
59+
by.addLocator('menuItem', findMenuItem);
6060

6161
After:
6262

6363
var findMenuItem = function() {
64-
var myArg = arguments[0];
65-
var domScope = arguments[1];
66-
// balh blah blah
67-
};
68-
by.addLocator('menuItem', findMenuItem);
64+
var myArg = arguments[0];
65+
var domScope = arguments[1];
66+
// balh blah blah
67+
};
68+
by.addLocator('menuItem', findMenuItem);
6969

7070
Closes #497
7171

0 commit comments

Comments
 (0)