diff options
author | Nick <fantostisch@users.noreply.github.com> | 2017-06-11 23:45:03 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2017-06-11 23:45:03 +0200 |
commit | 3983b8c35ad659090dba9c423f443f705e782407 (patch) | |
tree | 5598d1895ff473ccdb9bb71a07ddddaad9711c52 | |
parent | d2e85e0acdf87c2c357c13449615a8e8f98f9a4d (diff) |
[haxe/en] Fix typo (#2756)
- [x] I solemnly swear that this is all original content of which I am the original author
- [x] Pull request title is prepended with `[language/lang-code]`
- [x] Pull request touches only one file (or a set of logically related files with similar changes made)
- [x] Content changes are aimed at *intermediate to experienced programmers* (this is a poor format for explaining fundamental programming concepts)
- [x] If you've changed any part of the YAML Frontmatter, make sure it is formatted according to [CONTRIBUTING.md](https://github.com/adambard/learnxinyminutes-docs/blob/master/CONTRIBUTING.markdown)
- [x] Yes, I have double-checked quotes and field names!
Output:
My dog's name isfido, and his other favorite thing is a: teddy
New output:
My dog's name is fido, and his other favorite thing is a: teddy
-rw-r--r-- | haxe.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/haxe.html.markdown b/haxe.html.markdown index ee214540..03b3099e 100644 --- a/haxe.html.markdown +++ b/haxe.html.markdown @@ -380,7 +380,7 @@ class LearnHaxe3{ // The "_" case above is a "wildcard" value // that will match anything. - trace("My dog's name is" + my_dog_name + trace("My dog's name is " + my_dog_name + ", and his favorite thing is a: " + favorite_thing); @@ -406,7 +406,7 @@ class LearnHaxe3{ default : "some unknown treat"; } - trace("My dog's name is" + my_dog_name + trace("My dog's name is " + my_dog_name + ", and his other favorite thing is a: " + other_favorite_thing); |