diff options
author | Dan Korostelev <nadako@gmail.com> | 2015-03-24 12:37:49 +0300 |
---|---|---|
committer | Dan Korostelev <nadako@gmail.com> | 2015-03-24 12:37:49 +0300 |
commit | 03398877482f08c017e6774665f2c3b6e206ed34 (patch) | |
tree | b9dc92ea468f348ed3a6225ba3ef6facbd992186 /haxe.html.markdown | |
parent | 0e118934db0c6813482cee606ce15cec681a9ae0 (diff) |
[haxe] polishing
Diffstat (limited to 'haxe.html.markdown')
-rw-r--r-- | haxe.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/haxe.html.markdown b/haxe.html.markdown index e57c46a8..c807d2d7 100644 --- a/haxe.html.markdown +++ b/haxe.html.markdown @@ -12,7 +12,7 @@ Haxe author). Note that this guide is for Haxe version 3. Some of the guide may be applicable to older versions, but it is recommended to use other references. -```haxe +```csharp /* Welcome to Learn Haxe 3 in 15 minutes. http://www.haxe.org This is an executable tutorial. You can compile and run it using the haxe @@ -37,7 +37,7 @@ references. package. A package isn't necessary, but it's useful if you want to create a namespace for your code (e.g. org.yourapp.ClassName). - Omitting package declaration is the same as declaring empty package. + Omitting package declaration is the same as declaring an empty package. */ package; // empty package, no namespace. @@ -636,7 +636,7 @@ enum ComplexEnum{ ComplexEnumEnum(c:ComplexEnum); } // Note: The enum above can include *other* enums as well, including itself! -// Note: This is what called *Algebraic data type* in some other languages. +// Note: This is what's called *Algebraic data type* in some other languages. class ComplexEnumTest{ public static function example(){ |