Skip to content

Commit 409be30

Browse files
committed
missing semi colon
Signed-off-by: Fabio José <[email protected]>
1 parent c32c568 commit 409be30

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

lib/cloudevent.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,51 +22,51 @@ Cloudevent.prototype.format = function(){
2222

2323
// Then, format
2424
return this.formatter.format(this.spec.payload);
25-
}
25+
};
2626

2727
Cloudevent.prototype.toString = function(){
2828
return this.formatter.toString(this.spec.payload);
29-
}
29+
};
3030

3131
Cloudevent.prototype.type = function(type){
3232
this.spec.type(type);
3333
return this;
34-
}
34+
};
3535

3636
Cloudevent.prototype.source = function(_source){
3737
this.spec.source(_source);
3838
return this;
39-
}
39+
};
4040

4141
Cloudevent.prototype.id = function(_id){
4242
this.spec.id(_id);
4343
return this;
44-
}
44+
};
4545

4646
Cloudevent.prototype.time = function(_time){
4747
this.spec.time(_time);
4848
return this;
49-
}
49+
};
5050

5151
Cloudevent.prototype.schemaurl = function(_schemaurl) {
5252
this.spec.schemaurl(_schemaurl);
5353
return this;
54-
}
54+
};
5555

5656
Cloudevent.prototype.contenttype = function(_contenttype){
5757
this.spec.contenttype(_contenttype);
5858
return this;
59-
}
59+
};
6060

6161
Cloudevent.prototype.data = function(_data) {
6262
this.spec.data(_data);
6363
return this;
64-
}
64+
};
6565

6666
Cloudevent.prototype.addExtension = function(key, value){
6767
this.spec.addExtension(key, value);
6868
return this;
69-
}
69+
};
7070

7171
/*
7272
* Export the specs

0 commit comments

Comments
 (0)