aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/python')
-rw-r--r--gdb/python/lib/gdb/function/strfns.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/python/lib/gdb/function/strfns.py b/gdb/python/lib/gdb/function/strfns.py
index d29ff61..c56957b 100644
--- a/gdb/python/lib/gdb/function/strfns.py
+++ b/gdb/python/lib/gdb/function/strfns.py
@@ -21,7 +21,7 @@ import re
class _MemEq(gdb.Function):
- """$_memeq - compare bytes of memory
+ """$_memeq - compare bytes of memory.
Usage: $_memeq (A, B, LEN)
@@ -44,7 +44,7 @@ Returns:
class _StrLen(gdb.Function):
- """$_strlen - compute string length
+ """$_strlen - compute string length.
Usage: $_strlen (A)
@@ -59,7 +59,7 @@ Returns:
class _StrEq(gdb.Function):
- """$_streq - check string equality
+ """$_streq - check string equality.
Usage: $_streq (A, B)
@@ -77,7 +77,7 @@ Example (amd64-linux):
class _RegEx(gdb.Function):
- """$_regex - check if a string matches a regular expression
+ """$_regex - check if a string matches a regular expression.
Usage: $_regex (STRING, REGEX)