aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wslua/wslua_tvb.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-02-26 02:38:52 +0000
committerBill Meier <wmeier@newsguy.com>2013-02-26 02:38:52 +0000
commita6e56df8b683bb696655c331f64f22abc8f36af4 (patch)
treeb21cee2fefd1e6c9a65348c355761bdd776459f3 /epan/wslua/wslua_tvb.c
parentb320eb3d971372d1293a5c072b2cb4b4e2300a0e (diff)
it's ==> its & its ==> it's as needed.
svn path=/trunk/; revision=47898
Diffstat (limited to 'epan/wslua/wslua_tvb.c')
-rw-r--r--epan/wslua/wslua_tvb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/wslua/wslua_tvb.c b/epan/wslua/wslua_tvb.c
index 93a8f944c3..06f44e1dd6 100644
--- a/epan/wslua/wslua_tvb.c
+++ b/epan/wslua/wslua_tvb.c
@@ -316,14 +316,14 @@ int ByteArray_register(lua_State* L) {
* Tvb & TvbRange
*
* a Tvb represents a tvbuff_t in Lua.
- * a TvbRange represents a range in a tvb (tvb,offset,length) it's main purpose is to do bounds checking,
+ * a TvbRange represents a range in a tvb (tvb,offset,length) its main purpose is to do bounds checking,
* it helps too simplifing argument passing to Tree. In wireshark terms this is worthless nothing
* not already done by the TVB itself. In lua's terms is necessary to avoid abusing TRY{}CATCH(){}
* via preemptive bounds checking.
*
* These lua objects refers to structures in wireshak that are freed independently from Lua's garbage collector.
* To avoid using a pointer from Lua to Wireshark's that is already freed, we maintain a list of the pointers with
- * a marker that track's it's expiry.
+ * a marker that track's its expiry.
*
* All pointers are marked as expired when the dissection of the current frame is finished or when the garbage
* collector tries to free the object referring to the pointer, whichever comes first.