This repository was archived by the owner on Nov 28, 2018. It is now read-only.
File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -11,12 +11,12 @@ For documentation see doc/stomp.md and doc/frame.md
11
11
12
12
### Consumer
13
13
14
- See stomp-consumer.js
14
+ See examples/ stomp-consumer.js
15
15
16
16
### Producer
17
17
18
- See stomp-producer.js
18
+ See examples/ stomp-producer.js
19
19
20
20
### Producer with Transaction Support
21
21
22
- See stomp-producer-txn.js
22
+ See examples/ stomp-producer-txn.js
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ Stomp.prototype.begin = function() {
299
299
300
300
/**
301
301
* Commit transaction
302
- * @param {String } transaction id generated by Stomp.begin
302
+ * @param {String } transaction id generated by stomp. Stomp.begin()
303
303
*/
304
304
Stomp . prototype . commit = function ( transaction_id ) {
305
305
var self = this ;
@@ -309,7 +309,7 @@ Stomp.prototype.commit = function(transaction_id) {
309
309
310
310
/**
311
311
* Abort transaction
312
- * @param {String } transaction id generated by Stomp.begin
312
+ * @param {String } transaction id generated by stomp. Stomp.begin()
313
313
*/
314
314
Stomp . prototype . abort = function ( transaction_id ) {
315
315
var self = this ;
You can’t perform that action at this time.
0 commit comments