This is an automated email from the ASF dual-hosted git repository.
andreww pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/royale-docs.git
The following commit(s) were added to refs/heads/master by this push:
new c8fa3b2 Update debug.md
c8fa3b2 is described below
commit c8fa3b290e336b535bf41df90e8205da6c4c8edd
Author: Andrew Wetmore <[email protected]>
AuthorDate: Mon Dec 9 08:20:09 2019 -0400
Update debug.md
Small text fix.
---
create-an-application/application-tutorial/debug.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/create-an-application/application-tutorial/debug.md
b/create-an-application/application-tutorial/debug.md
index d229fdf..a40ee7d 100644
--- a/create-an-application/application-tutorial/debug.md
+++ b/create-an-application/application-tutorial/debug.md
@@ -43,7 +43,7 @@ So, to do further testing you will need to set up a web
server for the applicati
Back to the topic of debugging for a moment. Most browsers also have debuggers
with breakpoints. Your application `.mxml` and `.as` files have each been
turned into a `.js` file that the browser will let you set breakpoints in and
step through. Some IDEs support the ability to see your `.mxml` and `.as` files
in the debugger.
-> if you compiled your application with
[sourcemaps](https://www.html5rocks.com/en/tutorials/developertools/sourcemaps){:target='_blank'}
using `-source-map=true` compiler option, the Royale compiler will generate
source maps for each `.js` file and you'll see a `.js.map` at the same level.
+> if you compiled your application with
[sourcemaps](https://www.html5rocks.com/en/tutorials/developertools/sourcemaps){:target='_blank'}
using the `-source-map=true` compiler option, the Royale compiler will
generate source maps for each `.js` file and you'll see a `.js.map` at the same
level.
Anyway, to get this application to access GitHub, we have to make the
application available on a web server and learn a bit about security.