diff --git a/doc/README.sgml b/doc/README.sgml
index 7d1c6c854..bbb500200 100644
--- a/doc/README.sgml
+++ b/doc/README.sgml
@@ -1588,6 +1588,7 @@ Example usage:
$ python sqlmap.py -l /tmp/webscarab.log/conversations/ --scope="(www)?\.target\.(com|net|org)"
+
Injection
diff --git a/lib/core/option.py b/lib/core/option.py
index 58d866c55..fa98d58a1 100644
--- a/lib/core/option.py
+++ b/lib/core/option.py
@@ -105,7 +105,7 @@ def __feedTargetsDict(reqFile, addedTargetUrls):
scheme = None
if conf.scope:
- logger.info("using regex: '%s' for filtering targets" % conf.scope)
+ logger.info("using regular expression '%s' for filtering targets" % conf.scope)
for request in reqResList:
if scheme is None:
diff --git a/lib/utils/google.py b/lib/utils/google.py
index 305e7b4c0..a77bbd7f1 100644
--- a/lib/utils/google.py
+++ b/lib/utils/google.py
@@ -93,7 +93,7 @@ class Google:
"""
gpage = conf.googlePage if conf.googlePage > 1 else 1
- logger.info("using search result page #%d" % gpage)
+ logger.info("using Google result page #%d" % gpage)
if not googleDork:
return None