diff --git a/app/components/SimpleEditor/SimpleEditor.scss b/app/components/SimpleEditor/SimpleEditor.scss
index ce130a6dcd2465c09d6ff0e46b901cb44930d900..ee90412c7869ca2f97b536c1ec05dbdadd896b46 100644
--- a/app/components/SimpleEditor/SimpleEditor.scss
+++ b/app/components/SimpleEditor/SimpleEditor.scss
@@ -5,7 +5,7 @@ $fa-font-path: '~font-awesome/fonts';
 @import '~substance/substance.css';
 @import './elements/elements';
 @import './panes/panes';
-@import './miniEditor/miniEditor';
+@import './notesEditor/notesEditor';
 
 // grays
 $border: #ccc;
diff --git a/app/components/SimpleEditor/miniEditor/miniEditor.js b/app/components/SimpleEditor/notesEditor/NotesEditor.js
similarity index 100%
rename from app/components/SimpleEditor/miniEditor/miniEditor.js
rename to app/components/SimpleEditor/notesEditor/NotesEditor.js
diff --git a/app/components/SimpleEditor/miniEditor/MiniEditorImporter.js b/app/components/SimpleEditor/notesEditor/NotesEditorImporter.js
similarity index 100%
rename from app/components/SimpleEditor/miniEditor/MiniEditorImporter.js
rename to app/components/SimpleEditor/notesEditor/NotesEditorImporter.js
diff --git a/app/components/SimpleEditor/miniEditor/config.js b/app/components/SimpleEditor/notesEditor/config.js
similarity index 100%
rename from app/components/SimpleEditor/miniEditor/config.js
rename to app/components/SimpleEditor/notesEditor/config.js
diff --git a/app/components/SimpleEditor/miniEditor/miniEditor.scss b/app/components/SimpleEditor/notesEditor/notesEditor.scss
similarity index 100%
rename from app/components/SimpleEditor/miniEditor/miniEditor.scss
rename to app/components/SimpleEditor/notesEditor/notesEditor.scss
diff --git a/app/components/SimpleEditor/panes/Notes/Notes.js b/app/components/SimpleEditor/panes/Notes/Notes.js
index 0f2d2616d5b0778c9075e9d59c64820825ab0ff6..990538481fb87c6a1a86dd471f0aa9abed1d03fe 100644
--- a/app/components/SimpleEditor/panes/Notes/Notes.js
+++ b/app/components/SimpleEditor/panes/Notes/Notes.js
@@ -1,8 +1,8 @@
 import { Component, EditorSession,
   ProseEditorConfigurator as Configurator } from 'substance'
-import NotesEditor from '../../miniEditor/miniEditor'
-import config from '../../miniEditor/config'
-import Importer from '../../miniEditor/MiniEditorImporter'
+import NotesEditor from '../../notesEditor/NotesEditor'
+import config from '../../notesEditor/config'
+import Importer from '../../notesEditor/NotesEditorImporter'
 import {isEmpty, find} from 'lodash'
 
 class Notes extends Component {