diff --git a/Ghidra/Features/Base/src/main/java/ghidra/app/util/viewer/field/VariableAnnotatedStringHandler.java b/Ghidra/Features/Base/src/main/java/ghidra/app/util/viewer/field/VariableAnnotatedStringHandler.java index 4abaa0f430..3a43dc2afe 100644 --- a/Ghidra/Features/Base/src/main/java/ghidra/app/util/viewer/field/VariableAnnotatedStringHandler.java +++ b/Ghidra/Features/Base/src/main/java/ghidra/app/util/viewer/field/VariableAnnotatedStringHandler.java @@ -36,17 +36,17 @@ import ghidra.util.Msg; * This allows users to reference function variables in comments without having to change the * comment text when the variable is renamed. Users can enter the annotation using the variable's * name: - *
+ * {@code
* {@variable local_8}
*
* or
*
* {@variable coolVariable SomeFunction}
- *
+ * }
* The user annotation will be converted to use address information:
- *
+ * {@code
* {@variable Stack[0xa] FUN_1234eaea}
- *
+ * }
*/
public class VariableAnnotatedStringHandler implements AnnotatedStringHandler {
diff --git a/Ghidra/Features/Base/src/test.slow/java/ghidra/app/plugin/core/datamgr/DataTypeArchiveIDTest.java b/Ghidra/Features/Base/src/test.slow/java/ghidra/app/plugin/core/datamgr/DataTypeArchiveIDTest.java
index 71390fceb2..715282f9e6 100644
--- a/Ghidra/Features/Base/src/test.slow/java/ghidra/app/plugin/core/datamgr/DataTypeArchiveIDTest.java
+++ b/Ghidra/Features/Base/src/test.slow/java/ghidra/app/plugin/core/datamgr/DataTypeArchiveIDTest.java
@@ -60,7 +60,7 @@ public class DataTypeArchiveIDTest extends AbstractGenericTest {
private Map* Your Plugin can either directly implement the interface in your Plugin class: *
- * public class MyPlugin extends Plugin implements MyService {....}
+ * public class MyPlugin extends Plugin implements MyService {....}
*
*
* or it may delegate the handling of the service interface to another object during its
diff --git a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/DbCache.java b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/DbCache.java
index 88f5231f35..0e1f5105d6 100644
--- a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/DbCache.java
+++ b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/DbCache.java
@@ -139,7 +139,7 @@ public class DbCache
* This method is similar to the get() method in that it can be called without the database
* lock. It will first check if the object is in the cache and definitely valid before
diff --git a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/DbObject.java b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/DbObject.java
index 5883edd597..1798159d34 100644
--- a/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/DbObject.java
+++ b/Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/program/database/DbObject.java
@@ -124,8 +124,8 @@ public abstract class DbObject {
* additional checks that might require a database lock. The idea is that if the cache
* modification hasn't changed, then we know the object is valid. If the modification count
* has changed then we may or may not be valid and stronger checks are needed which will require
- * a lock. Subclasses should override {@link #refreshIfNeeded()}, {@link #refresh()} to do
- * the more robust validation checking.
+ * a lock. Subclasses should override {@link #refreshIfNeeded()},
+ * {@link #refresh(DBRecord)} to do the more robust validation checking.
*
* @return true if this object is invalid and must be re-validated, else false if object state
* is currently valid which may include a deleted state.