diff --git a/Ghidra/Framework/Generic/src/main/java/ghidra/framework/options/AttributedSaveState.java b/Ghidra/Framework/Generic/src/main/java/ghidra/framework/options/AttributedSaveState.java index 97a1ad097a..b931938d7d 100644 --- a/Ghidra/Framework/Generic/src/main/java/ghidra/framework/options/AttributedSaveState.java +++ b/Ghidra/Framework/Generic/src/main/java/ghidra/framework/options/AttributedSaveState.java @@ -24,13 +24,13 @@ import org.jdom.Element; /** * A version of {@link SaveState} that allows clients to add attributes to properties in this save * state. The following code shows how to use this class: - *
+ * 
{@code
  * AttributedSaveState ss = new AttributedSaveState();
  * ss.putBoolean("Happy", true);
  * 
  * Map attrs = Map.of("MyAttribute", "AttributeValue");
  * ss.addAttrbibutes("Happy", attrs);
- * 
+ * }
* *

In this example, the property "Happy" will be given the attribute "MyAttribute" with the value * of "AttributeValue". This is useful for clients that wish to add attributes to individual