diff --git a/ph-scale-basics_description_editor.html b/ph-scale-basics_description_editor.html
index 250a5f1..fe81512 100644
--- a/ph-scale-basics_description_editor.html
+++ b/ph-scale-basics_description_editor.html
@@ -326,13 +326,13 @@
State Descriptions for pH Scale
const getDefaultLogic = () => {
return localStorage.getItem( 'ph-scale-basics-description-logic.js' ) || '// Copy-paste logic here, it will be saved';
- }
+ };
const getDefaultStrings = () => {
// TODO: generalize to locale-specific based on what locale the sim is https://github.com/phetsims/joist/issues/941
return localStorage.getItem( 'ph-scale-basics-description-strings_en.js' ) || '// Copy-paste strings here, they will be saved';
- }
+ };
// eslint-disable-next-line no-undef
const logicEditor = CodeMirror( document.querySelector( '#logic-editor' ), {