summaryrefslogtreecommitdiff
path: root/python/examples/mappedview.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/examples/mappedview.py')
-rw-r--r--python/examples/mappedview.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/mappedview.py b/python/examples/mappedview.py
index 0fbf159c..30c0edfd 100644
--- a/python/examples/mappedview.py
+++ b/python/examples/mappedview.py
@@ -97,7 +97,7 @@ class MappedView(BinaryView):
def init(self):
# The BinaryView init method is invoked as part of the BinaryView creation process. This method is called under several different conditions:
# 1) When opening a file/bndb and no load options are provided.
- # 2) When opening a file/bndb and load options are provided. e.g. 'Open with Options' in the UI, or get_view_of_file_with_options
+ # 2) When opening a file/bndb and load options are provided. e.g. 'Open with Options' in the UI, or load
# 3) When parsing a file to create an ephemeral BinaryView (self.parse_only == True) for the purpose of extracting header information.
# Note: The get_load_settings_for_data classmethod is optional. If provided, it's used to generate load options for the BinaryViewType.
# If not provided, then the default load options are automatically generated by the core, extracting information automatically from a parsed BinaryView.