We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 054e300 commit fe858f6Copy full SHA for fe858f6
tools/CHANGELOG.md
@@ -12,6 +12,10 @@
12
13
## master
14
15
+#### :nail_care: Polish
16
+
17
+- Reverse order of extracted embeds, so they're in the correct order.
18
19
## 0.6.2
20
21
#### :rocket: New Feature
tools/src/tools.ml
@@ -481,4 +481,4 @@ let extractEmbedded ~extensionPoints ~filename =
481
("contents", Some (wrapInQuotes contents));
482
("loc", Some (Analysis.Utils.cmtLocToRange loc |> stringifyRange));
483
])
484
- |> array
+ |> List.rev |> array
0 commit comments