Merge "Doc: Fix code example in JS API" into stable-2.14

This commit is contained in:
David Pursehouse
2018-05-23 07:42:37 +00:00
committed by Gerrit Code Review

View File

@@ -769,7 +769,7 @@ Gerrit.get(url, callback)
----
Gerrit.get('/changes/?q=status:open', function (open) {
for (var i = 0; i < open.length; i++) {
console.log(open.get(i).change_id);
console.log(open[i].change_id);
}
});
----