Skip to content

Commit ba2d47f

Browse files
committed
Fix code style issues
Signed-off-by: Fabio José <[email protected]>
1 parent f22eabf commit ba2d47f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/bindings/http/binary_0_2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ HTTPBinary.prototype.emit = function(cloudevent){
3535

3636
// Have extensions?
3737
var exts = cloudevent.getExtensions();
38-
for(ext in exts){
38+
for(var ext in exts){
3939
_headers["ce-" + ext] = exts[ext];
4040
}
4141

lib/cloudevent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Cloudevent.prototype.addExtension = function(key, value){
112112

113113
Cloudevent.prototype.getExtensions = function() {
114114
return this.extensions;
115-
}
115+
};
116116

117117

118118
/*

0 commit comments

Comments
 (0)