From eb77895313bbfea2f4e63237cf551fc0e84007d7 Mon Sep 17 00:00:00 2001 From: Yuya Ochiai Date: Thu, 3 Nov 2016 13:15:16 +0900 Subject: [PATCH] Fix typo for docs/development.md --- docs/development.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/development.md b/docs/development.md index 7f282bb3..b4b0c9a4 100644 --- a/docs/development.md +++ b/docs/development.md @@ -81,13 +81,13 @@ Mattermost Desktop ├── resources/ - Resources which are used outside of the application codes. ├── scripts/ - Helper scripts. ├── src/ - Application source code. -│   ├── browser/ - Implemtation of Electron's renderer process. +│   ├── browser/ - Implementation of Electron's renderer process. │   │   ├── components/ - React.js components. │   │   ├── css/ - Stylesheets. │   │   ├── js/ - Helper JavaScript modules. │   │   └── webview/ - Injection code for Electron's tag. │   ├── common/ - Common JavaScript modules for both Electron's processes. -│   ├── main/ - Implemtation of Electron's main process. +│   ├── main/ - Implementation of Electron's main process. │   │   └── menus/ - Application menu. │   └── resources/ - Resources which are loaded from the application codes. └── test/ - Automated tests.