]> Cypherpunks repositories - gostls13.git/commitdiff
doc/go1.2.html: Go 1.2, not Go1.2
authorDominik Honnef <dominik.honnef@gmail.com>
Sat, 21 Sep 2013 21:28:52 +0000 (07:28 +1000)
committerRob Pike <r@golang.org>
Sat, 21 Sep 2013 21:28:52 +0000 (07:28 +1000)
R=r
CC=golang-dev
https://golang.org/cl/13735044

doc/go1.2.html

index 38179b126de0f2a562b580f5bca099da509a983f..fc2ede99b78ed6da34458e89f21fe71a47db0f36 100644 (file)
@@ -131,7 +131,7 @@ This is a backwards-compatible change that affects no existing programs.
 In prior releases, a goroutine that was looping forever could starve out other
 goroutines on the same thread, a serious problem when GOMAXPROCS
 provided only one user thread.
-In Go1.2, this is partially addressed: The scheduler is invoked occasionally
+In Go 1.2, this is partially addressed: The scheduler is invoked occasionally
 upon entry to a function.
 This means that any loop that includes a (non-inlined) function call can
 be pre-empted, allowing other goroutines to run on the same thread.