11Coding with Chrome - Debugging
22===============================
33
4- This document covers debugging informations and technique's for the
4+ This document covers debugging information and technique's for the
55Coding with Chrome editor.
66
77General options
@@ -33,7 +33,7 @@ npm run debug
3333
3434### Sync latest files and dependencies
3535
36- In some cases you need to update the dependencies to the latest version to
36+ In some cases, you need to update the dependencies to the latest version to
3737get everything working. This can be done with the following command:
3838
3939``` bash
@@ -53,7 +53,7 @@ Live debugging
5353---------------
5454
5555The following methods will help you to debug certain functions or parts without
56- the need to recompile the hole source code.
56+ the need to recompile the whole source code.
5757
5858### Using dist/chrome_os/js/debug.js
5959
@@ -63,7 +63,7 @@ change function without the need of recompile everything.
6363Just overwrite your function in the ` dist/chrome_os/js/debug.js ` file and reload
6464the application to see your change in action.
6565
66- In some cases it could be that you need to insert the hole object definition
66+ In some cases, it could be that you need to insert the whole object definition
6767here and not only parts of it.
6868
6969Original definition:
@@ -92,7 +92,7 @@ recompile the code.**
9292Instead of overwriting definitions in the ` dist/chrome_os/js/debug.js ` file you
9393could directly replace them in the ` dist/chrome_os/js/cwc_ui.js ` file.
9494
95- Please keep in mind that this file contains optimized code, so its not really
95+ Please keep in mind that this file contains optimized code, so it's not really
9696readable but this will also avoid to re-compile the code to test something.
9797
9898Original ` dist/chrome_os/js/cwc_ui.js ` :
0 commit comments