Quellcode durchsuchen

Changed constrained monospae to unconstrained.

mitm001 vor 8 Jahren
Ursprung
Commit
db7ce992c3
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/docs/asciidoc/jme3/advanced/save_and_load.adoc

+ 1 - 1
src/docs/asciidoc/jme3/advanced/save_and_load.adoc

@@ -136,7 +136,7 @@ To make a custom class savable:
 
 .  Implement `Savable` and add the `write()` and `read()` methods as shown in the example above.
 .  Do the following for each non-temporary class field: 
-**  Add one line that `write()`s the data to the JmeExport output capsule. 
+**  Add one line that ``write()``s the data to the JmeExport output capsule. 
 ***  Specify the variable to save, give it a String name (can be the same as the variable name), and specify a default value.
 
 **  Add one line that ``read…()``s the data to the JmeImport input capsule.