aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Lenz <moritz@faui2k3.org>2015-02-20 12:23:52 +0100
committerMoritz Lenz <moritz@faui2k3.org>2015-02-20 12:23:52 +0100
commit2426ecd25b8dfbae38abba71988469db9f690558 (patch)
treefa84073f7e667ae77843cfc762f09264f7dd9d0a
parent2f7d3a24a17bb50cb3ede6344f24c4e535f705bf (diff)
announce: be more consistent in the use of markdown
-rw-r--r--docs/announce/2015.02.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/announce/2015.02.md b/docs/announce/2015.02.md
index 8f1f96c..b95caa3 100644
--- a/docs/announce/2015.02.md
+++ b/docs/announce/2015.02.md
@@ -34,18 +34,18 @@ Some of the new compiler features added to this release include:
This behaviour now matches the behaviour on the Parrot and JVM backend,
therefore one could consider this a bug fix, rather than an incompatible
change.
-+ Overriding invoke/postcircumfix:<( )> for type coercions (ex. MyType(...))
++ Overriding `invoke`/`postcircumfix:<( )>` for type coercions (ex. `MyType(...)`)
now passes the function arguments as-is, rather than just passing a Capture
containing them. To get the old behavior, simply declare a Capture
parameter (|c).
-+ "6;" at unit start is no longer a way to say "no strict;". It was deemed
++ `6;` at unit start is no longer a way to say `no strict;`. It was deemed
to be a bad meme and huffmannized inappropriately.
+ Coercion syntax now works in signatures: sub foo(Str(Any) $a) { ... }
will take Any value as its first positional parameter, and coerce it to
Str before making it available in $a. Note that Str(Any) can be shortened
to Str().
-+ "sub MAIN;" (as in, rest of file is the MAIN unit) has been implemented.
-+ Metaop "=" now respects the precedence of the op it is meta-ing.
++ `sub MAIN;` (as in, rest of file is the MAIN unit) has been implemented.
++ Metaop `=` now respects the precedence of the op it is meta-ing.
+ Many optimizations, improved error messages and bugs fixed (over
200 commits to Rakudo since the 2015.01 release).