From b523eda6bc1706d06bc173a5974a046aa195b44e Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Sat, 13 Jul 2024 12:10:10 +0200 Subject: [PATCH] Fix issue links in README --- README.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5db37e5..ef1833c 100644 --- a/README.md +++ b/README.md @@ -353,7 +353,8 @@ formatted *without* spaces around them. Examples: #### Potential changes - Perhaps the rule for some of these should be "at least one space" instead. This could - help with alignment issues. Discussed in issue #12. + help with alignment issues. Discussed in issue + [#12](https://github.com/fredrikekre/Runic.jl/issues/12). ### Spaces around keywords @@ -431,7 +432,8 @@ Leading/trailing spaces are removed. Examples: #### Potential changes - Perhaps the rule for some of these should be "at least one space" instead. This could - help with alignment issues. Discussed in issue #12. + help with alignment issues. Discussed in issue + [#12](https://github.com/fredrikekre/Runic.jl/issues/12). ### Literal floating point numbers @@ -462,10 +464,10 @@ Examples: #### Potential changes - Always add the implicit `+` for the exponent part, i.e. `1.0e+1` instead of `1.0e1`. - Discussed in issue #13. + Discussed in issue [#13](https://github.com/fredrikekre/Runic.jl/issues/13). - Allow multiple trailing zeros in the fractional part, i.e. don't change `1.00` to `1.0`. Such trailing zeros are sometimes used to align numbers in literal array expressions. - Discussed in issue #14. + Discussed in issue [#14](https://github.com/fredrikekre/Runic.jl/issues/14). ### Literal hex and oct numbers @@ -512,6 +514,11 @@ The keyword `in` is used consistently instead of `∈` and `=` in `for` loops. E +for i in 1:2 ``` +#### Potential changes + - Since `∉` exists the formatted code may become asymmetric, when both `∈` and `∉` are + used, since `∉` is left alone and not replaced by e.g. `!(...)`. See discussion in issue + [#17](https://github.com/fredrikekre/Runic.jl/issues/17). + ### Braces around right hand side of `where` Braces are consistently used around the right hand side of `where` expressions. Examples: