Cosmetic: fix various typos

Change-Id: Ia6a587d872b410059713f41d09ba082bac835a6b
diff --git a/library/MGCP_Emulation.ttcn b/library/MGCP_Emulation.ttcn
index 9a92b9c..53aae1b 100644
--- a/library/MGCP_Emulation.ttcn
+++ b/library/MGCP_Emulation.ttcn
@@ -293,7 +293,7 @@
 			msg := {
 				response := resp
 			};
-			/* If this is the resposne to a pending CRCX, extract Endpoint and store in table */
+			/* If this is the response to a pending CRCX, extract Endpoint and store in table */
 			if (f_trans_id_was_pending(resp.line.trans_id)) {
 				f_ep_table_add(vc_conn, f_mgcp_ep(msg));
 			}
@@ -304,7 +304,7 @@
 
 		/* MGCP from client in Multi Conn mode */
 		[p.multi_conn_mode] MGCP_CLIENT_MULTI.receive(MGCP_SendTo:?) -> value mst sender vc_conn {
-			/* If this is the resposne to a pending CRCX, extract Endpoint and store in table */
+			/* If this is the response to a pending CRCX, extract Endpoint and store in table */
 			if (f_trans_id_was_pending(mst.msg.response.line.trans_id)) {
 				f_ep_table_add(vc_conn, f_mgcp_ep(mst.msg));
 			}
@@ -418,7 +418,7 @@
 	return ret;
 }
 
-/* Function that can be used as create_cb and will usse the expect table */
+/* Function that can be used as create_cb and will use the expect table */
 function ExpectedCreateCallback(MgcpCommand cmd, charstring id)
 runs on MGCP_Emulation_CT return MGCP_ConnHdlr {
 	var MGCP_ConnHdlr ret := null;