Skip to content

Commit

Permalink
fixed linebreak between metadata and doc comment, fixes #578
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexHaxe committed Apr 12, 2020
1 parent d40ad9f commit b1a9b15
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## dev branch / next version (1.x.x)

- Fixed broken indentation after case with OpOr pattern, fixes [#576](https://github.com/HaxeCheckstyle/haxe-formatter/issues/576)
- Fixed missing linebreak between metadata and doc comment, fixes [#578](https://github.com/HaxeCheckstyle/haxe-formatter/issues/578)
- Changed default wrapping location of `casePattern` to `afterLast`, fixes [#579](https://github.com/HaxeCheckstyle/haxe-formatter/issues/579)

## version 1.10.0 (2020-04-11)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{}

---

@:jsRequire("openfl/display/Bitmap", "default")
/**
* The Bitmap class represents display objects that represent bitmap images.
*/
extern class Bitmap extends DisplayObject {}

---

@:jsRequire("openfl/display/Bitmap", "default")
/**
* The Bitmap class represents display objects that represent bitmap images.
*/
extern class Bitmap extends DisplayObject {}

0 comments on commit b1a9b15

Please sign in to comment.