Many typo's

These were found using the command below searching for duplicated words,
and manually going through the results to remove the false positives and
reword the true positives. Sometimes I removed the doubled word and
sometimes I replaced the duplicated word.

The grep command:
grep -nIEr '\b([a-zA-Z]+)[[:space:]*]+\1\b' ./Ghidra
This commit is contained in:
Luke Serné 2025-04-19 18:06:41 +02:00
parent b7e91e80a2
commit 8303061629
252 changed files with 312 additions and 314 deletions

View file

@ -99,7 +99,7 @@
<BLOCKQUOTE>
<P><IMG src="help/shared/note.png"> See the documentation for the specific graph display for
descriptions of how to to make selections and navigate the graph.</P>
descriptions of how to make selections and navigate the graph.</P>
</BLOCKQUOTE>
<BLOCKQUOTE>

View file

@ -28,7 +28,7 @@ import ghidra.util.exception.CancelledException;
import ghidra.util.task.TaskMonitor;
/**
* {@link GraphDisplayListener} that handle events back and from from program graphs.
* {@link GraphDisplayListener} that handles events back and from program graphs.
*/
public class BlockModelGraphDisplayListener extends AddressBasedGraphDisplayListener {

View file

@ -48,7 +48,7 @@ import ghidra.util.task.TaskLauncher;
* the graphs that it generates. This plugin generates several different types of program graphs.
* Both the "block flow" and "code flow" actions will generate a graph of basic block flows. The only
* difference is that the "code flow" action generates a graph that
* displays the assembly for for each basic block, whereas the "block flow" action generates a graph
* displays the assembly for each basic block, whereas the "block flow" action generates a graph
* that displays the symbol or address at the start of the basic block. This plugin also
* generates call graphs, using either the default subroutine model or one that the user chooses.
*/