@@ -4,16 +4,15 @@ Go is an open source project.
4
4
5
5
It is the work of hundreds of contributors. We appreciate your help!
6
6
7
-
8
7
## Filing issues
9
8
10
9
When [ filing an issue] ( https://golang.org/issue/new ) , make sure to answer these five questions:
11
10
12
- 1 . What version of Go are you using (` go version ` )?
13
- 2 . What operating system and processor architecture are you using?
14
- 3 . What did you do?
15
- 4 . What did you expect to see?
16
- 5 . What did you see instead?
11
+ 1 . What version of Go are you using (` go version ` )?
12
+ 2 . What operating system and processor architecture are you using?
13
+ 3 . What did you do?
14
+ 4 . What did you expect to see?
15
+ 5 . What did you see instead?
17
16
18
17
General questions should go to the [ golang-nuts mailing list] ( https://groups.google.com/group/golang-nuts ) instead of the issue tracker.
19
18
The gophers there will answer or ask you to file an issue if you've tripped over a bug.
@@ -23,17 +22,17 @@ The gophers there will answer or ask you to file an issue if you've tripped over
23
22
In order to verify changes to the slides or code examples while developing
24
23
locally compile with your local toolchain:
25
24
26
- $ go install golang.org/x/tour/gotour
27
- $ $GOPATH/bin/gotour
25
+ $ go install golang.org/x/tour/gotour
26
+ $ $GOPATH/bin/gotour
28
27
29
28
## Running the App Engine version locally
30
29
31
30
To view the App Engine version of the slides while developing locally, install
32
31
the [ Go App Engine SDK] ( https://cloud.google.com/appengine/downloads?hl=en )
33
32
and then:
34
33
35
- $ cd $GOPATH/src/golang.org/x/tour
36
- $ $SDK_PATH/dev_appserver.py .
34
+ $ cd $GOPATH/src/golang.org/x/tour
35
+ $ $SDK_PATH/dev_appserver.py .
37
36
38
37
The App Engine version runs code examples against the service at play.golang.org.
39
38
To verify changes to the code examples you must use your local toolchain to compile
@@ -44,9 +43,5 @@ and run `gotour` locally.
44
43
Please read the [ Contribution Guidelines] ( https://golang.org/doc/contribute.html )
45
44
before sending patches.
46
45
47
- ** We do not accept GitHub pull requests**
48
- (we use [ Gerrit] ( https://code.google.com/p/gerrit/ ) instead for code review).
49
-
50
46
Unless otherwise noted, the Go source files are distributed under
51
47
the BSD-style license found in the LICENSE file.
52
-
0 commit comments