@@ -38,7 +38,7 @@ <h2 id="introduction">DRAFT RELEASE NOTES - Introduction to Go 1.8</h2>
38
38
< a href ="#http_shutdown "> adds HTTP graceful shutdown</ a > ,
39
39
< a href ="#more_context "> adds more context support</ a > ,
40
40
< a href ="#mutex_prof "> enables profiling mutexes</ a > ,
41
- and < a href ="#sort "> simplifies sorting slices</ a > .
41
+ and < a href ="#sort_slice "> simplifies sorting slices</ a > .
42
42
</ p >
43
43
44
44
< h2 id ="language "> Changes to the language</ h2 >
@@ -339,17 +339,23 @@ <h3 id="gccgo">Gccgo</h3>
339
339
version of gccgo.
340
340
</ p >
341
341
342
- < h3 id ="cmd_go " > Go command </ h3 >
342
+ < h3 id ="gopath " > Default GOPATH </ h3 >
343
343
344
344
< p >
345
- The < a href ="/cmd/go/ "> < code > go</ code > command</ a > 's basic operation
346
- is unchanged, but there is one addition worth noting.
345
+ The
346
+ < a href ="/cmd/go/#hdr-GOPATH_environment_variable "> < code > GOPATH</ code >
347
+ environment variable</ a > now has a default value if it
348
+ is unset. It defaults to
349
+ < code > $HOME/go</ code > on Unix and
350
+ < code > %USERPROFILE%/go</ code > on Windows.
347
351
</ p >
348
352
353
+ < h3 id ="go_bug "> Go bug</ h3 >
354
+
349
355
< p >
350
356
The new
351
357
“< a href ="/cmd/go/#hdr-Print_information_for_bug_reports "> < code > go</ code >
352
- < code > bug</ code > </ a > ” starts a bug report on GitHub, prefilled
358
+ < code > bug</ code > </ a > ” command starts a bug report on GitHub, prefilled
353
359
with information about the current system.
354
360
</ p >
355
361
@@ -485,7 +491,7 @@ <h3 id="examples">Examples</h3>
485
491
Examples have been added to the documentation across many packages.
486
492
</ p >
487
493
488
- < h3 id ="sortslice "> Sort</ h3 >
494
+ < h3 id ="sort_slice "> Sort</ h3 >
489
495
490
496
< p >
491
497
The < a href ="/pkg/sort/ "> sort</ a > package
0 commit comments