aboutsummaryrefslogtreecommitdiff
path: root/internal/api/testdata/markdown.golden
diff options
context:
space:
mode:
Diffstat (limited to 'internal/api/testdata/markdown.golden')
-rw-r--r--internal/api/testdata/markdown.golden30
1 files changed, 15 insertions, 15 deletions
diff --git a/internal/api/testdata/markdown.golden b/internal/api/testdata/markdown.golden
index 205546d0..8e19e5db 100644
--- a/internal/api/testdata/markdown.golden
+++ b/internal/api/testdata/markdown.golden
@@ -13,7 +13,7 @@ Search [Google](https://google.com) for details.
## Constants
-```
+```go
const (
X = 1
Y = 2
@@ -21,62 +21,62 @@ const (
```
Several constants.
-```
+```go
const C = 1
```
C is a shorthand for 1.
## Variables
-```
+```go
var V = 2
```
V is a variable.
## Functions
-```
+```go
func Add(x int) int
```
Add adds 1 to x.
-```
+```go
func F()
```
F is a function.
## Types
-```
+```go
type A int
```
-```
+```go
type B bool
```
-```
+```go
type I1 interface {
M1()
}
```
I1 is an interface.
-```
+```go
type I2 interface {
I1
M2()
}
```
-```
+```go
type S1 struct {
F int // field
}
```
S1 is a struct.
-```
+```go
type S2 struct {
S1
G int
@@ -84,22 +84,22 @@ type S2 struct {
```
S2 is another struct.
-```
+```go
type T int
```
T is a type.
-```
+```go
const CT T = 3
```
CT is a typed constant. They appear after their type.
-```
+```go
func TF() T
```
TF is a constructor for T.
-```
+```go
func (T) M()
```
M is a method of T. BUG(xxx): this verifies that notes are rendered.