Skip to content

Commit 382833f

Browse files
committed
Reorder (and restrcuture) the sections in the README
Previously, the sections were * Supported syntax * Module Aliases * New functions, macros, and methods * Renaming * New macros * Other changes * New types * Developer tips This changes the order to * Supported syntax * New functions and methods * New macros * New types * Renaming * Other changes * Developer tips getting rid of the ambiguity where to put new macros and removing the "Module Aliases" section (if needed, these could probably go into "Renmaing"). Also, the entry from #668 is moved from "Other changes" to "New functions and methods" as it is a new method. Finally, presently empty section get a "None." placeholder entry.
1 parent 0e84461 commit 382833f

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

README.md

+15-7
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,12 @@ Please check the list below for the specific syntax you need.
4646

4747
Currently, the `@compat` macro supports the following syntaxes:
4848

49-
## Module Aliases
49+
None.
5050

51-
## New functions, macros, and methods
51+
## New functions and methods
52+
53+
* Function composition now supports multiple functions: `∘(f, g, h) = f ∘ g ∘ h`
54+
and splatting `∘(fs...)` for composing an iterable collection of functions ([#33568]).
5255

5356
* `only(x)` returns the one-and-only element of a collection `x` ([#33129]). (since Compat 2.2.0)
5457

@@ -65,16 +68,21 @@ Currently, the `@compat` macro supports the following syntaxes:
6568

6669
* `merge` methods with one and `n` `NamedTuple`s ([#29259]). (since Compat 2.0.0)
6770

71+
## New macros
72+
73+
None.
74+
75+
## New types
76+
77+
None.
78+
6879
## Renaming
6980

70-
## New macros
81+
None.
7182

7283
## Other changes
7384

74-
* Function composition now supports multiple functions: `∘(f, g, h) = f ∘ g ∘ h`
75-
and splatting `∘(fs...)` for composing an iterable collection of functions ([#33568]).
76-
77-
## New types
85+
None.
7886

7987
## Developer tips
8088

0 commit comments

Comments
 (0)