Skip to content

Commit

Permalink
Fix issue links in README
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Jul 13, 2024
1 parent f48f864 commit b523eda
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit b523eda

Please sign in to comment.