diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 878d5e9876fa..2e5d633feabd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -233,7 +233,7 @@ This is a free and open source SDK capable of compiling ActionScript 3 code. It 4. Define the `FLEX_HOME` and `PLAYERGLOBAL_HOME` environment variables to the path of the extracted SDK root, and the path of the `/frameworks/libs/player` subdirectory, respectively. 5. Edit `/frameworks/flex-config.xml` and change `27.0` to `32.0`. -After `mxmlc` is set up, create a file `test.as` in a text editor, per the following template: +After `mxmlc` is set up, create a file `Test.as` (note the capitalization) in a text editor, per the following template: ```as package { @@ -247,10 +247,10 @@ trace("Hello World!"); Then compile it using: ```sh -mxmlc -output test.swf -compiler.debug=true Test.as +mxmlc -o test.swf -debug Test.as ``` -You may want to use Docker instead - something like `docker run -it --rm -v ${PWD}:/src jeko/airbuild mxmlc -output test.swf -compiler.debug=true Test.as` works well. +You may want to use Docker instead - something like `docker run -it --rm -v ${PWD}:/src jeko/airbuild mxmlc -o test.swf -debug Test.as` works well. ### RABCDAsm