Update comments.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@130533 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/build-swig-Python.sh b/scripts/Python/build-swig-Python.sh
index 0c28872..c649648 100755
--- a/scripts/Python/build-swig-Python.sh
+++ b/scripts/Python/build-swig-Python.sh
@@ -173,7 +173,7 @@
$SWIG -c++ -shadow -python -I"/usr/include" -I"${SRC_ROOT}/include" -I./. -outdir "${CONFIG_BUILD_DIR}" -o "${swig_output_file}" "${swig_input_file}"
-# Implement the iterator protocol for some lldb objects.
+# Implement the iterator protocol and/or eq/ne operators for some lldb objects.
# Append global variable to lldb Python module.
# And initialize the lldb debugger subsystem.
current_dir=`pwd`
diff --git a/scripts/Python/modify-python-lldb.py b/scripts/Python/modify-python-lldb.py
index 0b33e69..0b9c174 100644
--- a/scripts/Python/modify-python-lldb.py
+++ b/scripts/Python/modify-python-lldb.py
@@ -2,8 +2,8 @@
# modify-lldb-python.py
#
# This script modifies the lldb module (which was automatically generated via
-# running swig) to support iteration for certain lldb objects, adds a global
-# variable 'debugger_unique_id' and initializes it to 0.
+# running swig) to support iteration and/or equality operations for certain lldb
+# objects, adds a global variable 'debugger_unique_id' and initializes it to 0.
#
# It also calls SBDebugger.Initialize() to initialize the lldb debugger
# subsystem.