Skip to content

Commit bdfd827

Browse files
committed
Version 0.3.0
1 parent 2fb7e5a commit bdfd827

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,9 @@ Summary of options (see below table for descriptions):
229229
- Structs literals (`MyStruct{...}`) can't have a space between the name and the
230230
braces, despite the fact that Go permits this.
231231
- Type conversion (`MyType(someVal)`) is highlighted like a function call
232-
- A slice literal whose type is a function with multiple return values and the
233-
type is not in parentheses (e.g. `[]func(a, b int) (c, d Foo){ f1, f2, f3 }`)
234-
is technically valid Go code, but the `Foo` type will not be highlighted
232+
- A slice or map literal whose type is a function with multiple return values
233+
and the type is not in parentheses (e.g. `[]func(a, b int) (c, d Foo){ f1, f2,
234+
f3 }`) is technically valid Go code, but the `Foo` type will not be highlighted
235235
correctly.
236236
- This can easily be avoided by wrapping the type in parentheses to make it
237237
clear (e.g. `[](func(a, b int) (c, d Foo)){ f1, f2, f3 }`, which is

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## Version 0.3.0 - 2023/01/18
44

55
### Added
66

0 commit comments

Comments
 (0)