Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for paragraph (0.1 sec)

  1. JavadocStyleGuide.md

    - The first sentence is a summary.
    - Notice the inline tag `{@link URL}`, which converts to an HTML hyperlink pointing to the documentation for the URL class.
    - If you have more than one paragraph in the doc comment, separate the paragraphs with a `<p>` paragraph tag, as shown.
    - Insert a blank comment line between the description and the list of tags, as shown.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	case *md.HTMLBlock:
    		return strings.Join(b.Text, "\n")
    	case *md.List:
    		return blocksText(b.Items)
    	case *md.Item:
    		return blocksText(b.Blocks)
    	case *md.Empty:
    		return ""
    	case *md.Paragraph:
    		return text(b.Text)
    	case *md.Quote:
    		return blocksText(b.Blocks)
    	case *md.ThematicBreak:
    		return "---"
    	default:
    		panic(fmt.Sprintf("unknown block type %T", b))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/encoding/json/encode.go

    //
    // Embedded struct fields are usually marshaled as if their inner exported fields
    // were fields in the outer struct, subject to the usual Go visibility rules amended
    // as described in the next paragraph.
    // An anonymous struct field with a name given in its JSON tag is treated as
    // having that name, rather than being anonymous.
    // An anonymous struct field of interface type is treated the same as having
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    // extracts a deprecation message from that.
    //
    // A deprecation message is contained in a paragraph within a block of comments
    // that starts with "Deprecated:" (case sensitive). The message runs until the
    // end of the paragraph and does not include the "Deprecated:" prefix. If the
    // comment block has multiple paragraphs that start with "Deprecated:",
    // parseDeprecation returns the message from the first.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    		printf.Analyzer,
    	}
    
    A driver may use the name, flags, and documentation to provide on-line
    help that describes the analyses it performs.
    The doc comment contains a brief one-line summary,
    optionally followed by paragraphs of explanation.
    
    The [Analyzer] type has more fields besides those shown above:
    
    	type Analyzer struct {
    		Name             string
    		Doc              string
    		Flags            flag.FlagSet
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top