@@ -349,7 +349,7 @@ func NewFile(header, footer string, packages []*Package) *File
349349
350350NewFile creates a new instance of File with the provided information\.
351351
352- ## type [Func](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L11-L15 >)
352+ ## type [Func](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L12-L16 >)
353353
354354Func holds documentation information for a single func declaration within a package or type\.
355355
@@ -359,79 +359,79 @@ type Func struct {
359359}
360360```
361361
362- ### func [ NewFunc] ( < https://github.com/princjef/gomarkdoc/blob/master/lang/func.go#L20 > )
362+ ### func [ NewFunc] ( < https://github.com/princjef/gomarkdoc/blob/master/lang/func.go#L21 > )
363363
364364``` go
365365func NewFunc (cfg *Config , doc *doc .Func , examples []*doc .Example ) *Func
366366```
367367
368368NewFunc creates a new Func from the corresponding documentation construct from the standard library\, the related token\.FileSet for the package and the list of examples for the package\.
369369
370- ### func \(\*Func\) [Doc](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L65 >)
370+ ### func \(\*Func\) [Doc](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L66 >)
371371
372372```go
373373func (fn *Func) Doc() *Doc
374374```
375375
376376Doc provides the structured contents of the documentation comment for the function\.
377377
378- ### func \(\*Func\) [Examples](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L77 >)
378+ ### func \(\*Func\) [Examples](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L79 >)
379379
380380```go
381381func (fn *Func) Examples() (examples []*Example)
382382```
383383
384384Examples provides the list of examples from the list given on initialization that pertain to the function\.
385385
386- ### func \(\*Func\) [Level](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L26 >)
386+ ### func \(\*Func\) [Level](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L27 >)
387387
388388```go
389389func (fn *Func) Level() int
390390```
391391
392392Level provides the default level at which headers for the func should be rendered in the final documentation\.
393393
394- ### func \(\*Func\) [Location](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L53 >)
394+ ### func \(\*Func\) [Location](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L54 >)
395395
396396```go
397397func (fn *Func) Location() Location
398398```
399399
400400Location returns a representation of the node's location in a file within a repository\.
401401
402- ### func \(\*Func\) [Name](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L31 >)
402+ ### func \(\*Func\) [Name](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L32 >)
403403
404404```go
405405func (fn *Func) Name() string
406406```
407407
408408Name provides the name of the function\.
409409
410- ### func \(\*Func\) [Receiver](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L47 >)
410+ ### func \(\*Func\) [Receiver](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L48 >)
411411
412412```go
413413func (fn *Func) Receiver() string
414414```
415415
416416Receiver provides the type of the receiver for the function\, or empty string if there is no receiver type\.
417417
418- ### func \(\*Func\) [Signature](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L71 >)
418+ ### func \(\*Func\) [Signature](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L72 >)
419419
420420```go
421421func (fn *Func) Signature() (string, error)
422422```
423423
424424Signature provides the raw text representation of the code for the function's signature\.
425425
426- ### func \(\*Func\) [Summary](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L59 >)
426+ ### func \(\*Func\) [Summary](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L60 >)
427427
428428```go
429429func (fn *Func) Summary() string
430430```
431431
432432Summary provides the one\-sentence summary of the function's documentation comment
433433
434- ### func \(\*Func\) [Title](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L37 >)
434+ ### func \(\*Func\) [Title](<https:// github.com/princjef/gomarkdoc/blob/master/lang/func.go#L38 >)
435435
436436```go
437437func (fn *Func) Title() string
0 commit comments