Skip to content

Commit 8d57d84

Browse files
committed
Merge branch 'master' into feature/internal-msan
Change-Id: I4a88d49272569a8fb9d1e9779ff390ba01f20e87
2 parents 84da740 + 1ffc110 commit 8d57d84

File tree

164 files changed

+8556
-7186
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+8556
-7186
lines changed

api/README

+3
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ warning output from the go api tool. Each file should be named
2121
nnnnn.txt, after the issue number for the accepted proposal.
2222
(The #nnnnn suffix must also appear at the end of each line in the file;
2323
that will be preserved when next/*.txt is concatenated into go1.XX.txt.)
24+
25+
When you add a file to the api/next directory, you must add at least one file
26+
under doc/next. See doc/README.md for details.

api/next/42888.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pkg runtime/debug, func SetCrashOutput(*os.File) error #42888

api/next/61696.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pkg sync, method (*Map) Clear() #61696

doc/README.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,24 @@ corresponding to standard library package paths, and headings for those package
1313
paths will be generated automatically.
1414

1515
Files in this repo's `api/next` directory must have corresponding files in
16-
`*stdlib/*minor`. The files should be in the subdirectory for the package with
17-
the new API, and should be named after the issue number of the API proposal. For
18-
example, an `api/next` file with the line
16+
`doc/next/*stdlib/*minor`.
17+
The files should be in the subdirectory for the package with the new
18+
API, and should be named after the issue number of the API proposal.
19+
For example, if the directory `6-stdlib/99-minor` is present,
20+
then an `api/next` file with the line
1921

2022
pkg net/http, function F #12345
2123

22-
should have a corresponding file named `net/http/12345.md`.
24+
should have a corresponding file named `doc/next/6-stdlib/99-minor/net/http/12345.md`.
2325
At a minimum, that file should contain either a full sentence or a TODO,
2426
ideally referring to a person with the responsibility to complete the note.
2527

28+
Use the following forms in your markdown:
29+
30+
[`http.Request`](/pkg/net/http#Request) # symbol documentation
31+
[#12345](/issue/12345) # GitHub issues
32+
[CL 6789](/cl/6789) # Gerrit changelists
33+
2634
## For the release team
2735

2836
At the start of a release development cycle, the contents of `next` should be deleted

0 commit comments

Comments
 (0)