aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorcch123 <buaa.cch@gmail.com>2018-06-04 15:20:07 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2018-06-04 15:26:17 +0000
commit0680c03ea49ae1ae0a797255f98f48ccf41a084f (patch)
tree3db8df3f4754505a93c8c23cc78a29da922d29a9 /src
parent8994444491d984491d8070ed30aeffc1abe344a2 (diff)
downloadgo-0680c03ea49ae1ae0a797255f98f48ccf41a084f.tar.xz
runtime: fix typo in the templateThread godoc
Change-Id: Ie8d563d39b88ab1631bc150d7d5bdbf1aa400f76 GitHub-Last-Rev: d092c8c8eb886fd9abad9bdaed7330a6cbd7f9a4 GitHub-Pull-Request: golang/go#25716 Reviewed-on: https://go-review.googlesource.com/116115 Reviewed-by: Daniel Martí <mvdan@mvdan.cc>
Diffstat (limited to 'src')
-rw-r--r--src/runtime/proc.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/proc.go b/src/runtime/proc.go
index 9da276d453..9f4feebfd7 100644
--- a/src/runtime/proc.go
+++ b/src/runtime/proc.go
@@ -1942,7 +1942,7 @@ func startTemplateThread() {
newm(templateThread, nil)
}
-// tmeplateThread is a thread in a known-good state that exists solely
+// templateThread is a thread in a known-good state that exists solely
// to start new threads in known-good states when the calling thread
// may not be a a good state.
//