From e24e7a728afa6ce9aa3942e335cfd938d192b7e5 Mon Sep 17 00:00:00 2001 From: Robert Xiao Date: Mon, 27 Sep 2021 05:42:49 -0700 Subject: [PATCH] Fix formatting issue in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 49930e0..09dca60 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ loaded to the table. You can manually load these segments by calling `WasmLoader.loadElementsToTable`. For example, to load element segment #0 to table #1 at offset 2 in Python: - ```python +```python from wasm import WasmLoader from wasm.analysis import WasmAnalysis from ghidra.util.task import ConsoleTaskMonitor @@ -54,7 +54,7 @@ WasmLoader.loadElementsToTable(currentProgram, WasmAnalysis.getState(currentProg - Similarly, data segments can be manually loaded as well. For example, to load data segment #5 to memory #0 at offset 0x1000, do the following in Python: - ```python +```python from wasm import WasmLoader from wasm.analysis import WasmAnalysis from ghidra.util.task import ConsoleTaskMonitor