Skip to content

Commit f8ce5b4

Browse files
committed
Merge branch 'GP-0_ryanmkurtz_PR-8025_LukeSerne_fix-typo'
2 parents 812b243 + 6730154 commit f8ce5b4

File tree

260 files changed

+533
-537
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

260 files changed

+533
-537
lines changed

Ghidra/Debug/Debugger-api/src/main/java/ghidra/debug/api/action/LocationTrackingSpecFactory.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -68,7 +68,7 @@ static Map<String, LocationTrackingSpec> allSuggested(PluginTool tool) {
6868
List<LocationTrackingSpec> getSuggested(PluginTool tool);
6969

7070
/**
71-
* Attempt to parse the given configuration name as as specification
71+
* Attempt to parse the given configuration name as a specification
7272
*
7373
* @param name the configuration name, usually including a prefix unique to each factory
7474
* @return the specification, or null if this factory cannot parse it

Ghidra/Debug/Debugger-api/src/main/java/ghidra/debug/api/breakpoint/LogicalBreakpoint.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -558,7 +558,7 @@ public static State sameAddress(Collection<State> col) {
558558
}
559559

560560
/**
561-
* Get the desired state were the the logical breakpoint to be toggled
561+
* Get the desired state were the logical breakpoint to be toggled
562562
*
563563
* <p>
564564
* The expected "action" when toggling a breakpoint may vary depending on whether or not the

Ghidra/Debug/Debugger-rmi-trace/DEVNOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ I instead just use a fixed 32-bit int now.
134134

135135
# How-To?
136136

137-
For now, I'd say just the the gdb implementation as a template / guide.
137+
For now, I'd say just take the gdb implementation as a template / guide.
138138
Just beware, the whole thing is a bit unstable, so the code may change, but still, I don't expect it to change so drastically that integration work would be scrapped.
139139

140140
If you're writing Python, create a Python package following the template for gdb's.

Ghidra/Debug/Debugger-rmi-trace/src/main/py/src/ghidratrace/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ def put_registers(self, space: str, values: Iterable[RegVal],
376376
List[str], RemoteResult[Any, List[str]]]:
377377
"""Set register values at the given time on.
378378
379-
values is a dictionary, where each key is a a register name, and
379+
values is a dictionary, where each key is a register name, and
380380
the value is a byte array. No matter the target architecture,
381381
the value is given in big-endian byte order.
382382
"""

Ghidra/Debug/Debugger/src/main/java/ghidra/app/plugin/core/debug/gui/stack/vars/VariableValueUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ public static Variable findVariable(Function function, Register register) {
498498
}
499499

500500
/**
501-
* Find the fuction's variable whose storage contains the given stack offset
501+
* Find the function's variable whose storage contains the given stack offset
502502
*
503503
* @param function the function
504504
* @param stackAddress the stack offset

Ghidra/Debug/Debugger/src/test/java/ghidra/app/plugin/core/debug/disassemble/DebuggerDisassemblyTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ public void testAutoDisasembleReDisasembleX8664Offcut() throws Throwable {
289289
assertMnemonic("JMP", instructions.getAt(0, tb.addr(0x00400000)));
290290
/**
291291
* Depending on preference for branch or fall-through, the disassembler may or may not
292-
* proceed to the following instructions. I don't really care, since the test is the the
292+
* proceed to the following instructions. I don't really care, since the test is that the
293293
* JMP gets deleted after the update to PC.
294294
*/
295295
});
@@ -324,7 +324,7 @@ public void testAutoDisassembleReDisassembleX8664OffcutByEmulation() throws Thro
324324
assertMnemonic("JMP", instructions.getAt(0, tb.addr(0x00400000)));
325325
/**
326326
* Depending on preference for branch or fall-through, the disassembler may or may not
327-
* proceed to the following instructions. I don't really care, since the test is the the
327+
* proceed to the following instructions. I don't really care, since the test is that the
328328
* JMP gets deleted after the update to PC.
329329
*/
330330
});
@@ -374,7 +374,7 @@ public void testAutoDisassembleReDisassembleX8664OffcutByProgEmu() throws Throwa
374374
assertMnemonic("JMP", instructions.getAt(0, tb.addr(0x00400000)));
375375
/**
376376
* Depending on preference for branch or fall-through, the disassembler may or may not
377-
* proceed to the following instructions. I don't really care, since the test is the the
377+
* proceed to the following instructions. I don't really care, since the test is that the
378378
* JMP gets deleted after the update to PC.
379379
*/
380380
});

Ghidra/Debug/Framework-TraceModeling/src/main/java/ghidra/trace/database/program/DBTraceProgramView.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1467,13 +1467,13 @@ public void updateMemoryDeleteRegionBlock(TraceMemoryRegion region) {
14671467
}
14681468

14691469
public void updateMemoryAddSpaceBlock(AddressSpace space) {
1470-
// Spaces not not time-bound. No visibility check.
1470+
// Spaces are not time-bound. No visibility check.
14711471
memory.updateAddSpaceBlock(space);
14721472
allAddressesValid = false;
14731473
}
14741474

14751475
public void updateMemoryDeleteSpaceBlock(AddressSpace space) {
1476-
// Spaces not not time-bound. No visibility check.
1476+
// Spaces are not time-bound. No visibility check.
14771477
memory.updateDeleteSpaceBlock(space);
14781478
allAddressesValid = false;
14791479
}

Ghidra/Debug/Framework-TraceModeling/src/test/java/ghidra/dbg/target/schema/XmlTargetObjectSchemaTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class XmlTargetObjectSchemaTest {
4646
<schema name="down1">
4747
<attribute schema="VOID" fixed="yes" hidden="yes" />
4848
</schema>
49-
</context>"""; // Cannot have final final new-line or serialize test will fail
49+
</context>"""; // Cannot have a final new-line or serialize test will fail
5050

5151
protected static final DefaultSchemaContext CTX = new DefaultSchemaContext();
5252
protected static final SchemaName NAME_ROOT = new SchemaName("root");

Ghidra/Features/BSim/src/main/help/help/topics/BSim/IngestProcess.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <H2 class="title" style="clear: both"><A name="IngestOverview"></A>Ingest
6363
"filename">localhost</CODE> is running both a Ghidra Server and a BSim PostgreSQL database
6464
server. On the Ghidra Server, a repository named <CODE class="filename">repo</CODE> has
6565
been created. On the BSim server, a database named <CODE class="filename">repo</CODE> has
66-
also been created. See See <A class="xref" href=
66+
also been created. See <A class="xref" href=
6767
"CommandLineReference.html#BSimCommand">Command-Line Utility Reference</A> for more
6868
details on use of <STRONG>bsim</STRONG> command and other supported BSim databases.</P>
6969

Ghidra/Features/BSim/src/main/java/ghidra/features/bsim/query/description/CategoryRecord.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
66
* You may obtain a copy of the License at
7-
*
7+
*
88
* http://www.apache.org/licenses/LICENSE-2.0
9-
*
9+
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
1212
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -24,7 +24,7 @@
2424
import java.io.Writer;
2525

2626
/**
27-
* A user-defined category associated associated with an executable
27+
* A user-defined category associated with an executable
2828
* Specified by a -type- and then the particular -category- (within the type) that
2929
* the executable belongs to.
3030
*

0 commit comments

Comments
 (0)