Skip to content

Commit

Permalink
Merge pull request #31 from 10llo/patch-1
Browse files Browse the repository at this point in the history
Fixed minor spelling issue
  • Loading branch information
hitgeek authored Mar 13, 2018
2 parents 852f8e5 + 332af28 commit 624595e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var app = hl7.tcp();

app.use(function(req, res, next) {
//req.msg is the HL7 message
console.log('******message recieved*****')
console.log('******message received*****')
console.log(req.msg.log());
next();
})
Expand Down Expand Up @@ -59,7 +59,7 @@ var msg = new hl7.Message(

console.log('******sending message*****')
client.send(msg, function(err, ack) {
console.log('******ack recieved*****')
console.log('******ack received*****')
console.log(ack.log());
});
///////////////////CLIENT/////////////////////
Expand Down

0 comments on commit 624595e

Please sign in to comment.