aboutsummaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/cputicks.go2
-rw-r--r--src/runtime/lock_sema.go2
-rw-r--r--src/runtime/mgc.go2
-rw-r--r--src/runtime/panic.go2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/runtime/cputicks.go b/src/runtime/cputicks.go
index ccc3947bb2..de97d5b6fa 100644
--- a/src/runtime/cputicks.go
+++ b/src/runtime/cputicks.go
@@ -11,6 +11,6 @@
package runtime
-// careful: cputicks is not guaranteed to be monotonic! In particular, we have
+// careful: cputicks is not guaranteed to be monotonic! In particular, we have
// noticed drift between cpus on certain os/arch combinations. See issue 8976.
func cputicks() int64
diff --git a/src/runtime/lock_sema.go b/src/runtime/lock_sema.go
index 5b0169d572..68fcb564af 100644
--- a/src/runtime/lock_sema.go
+++ b/src/runtime/lock_sema.go
@@ -140,7 +140,7 @@ func notewakeup(n *note) {
case v == 0:
// Nothing was waiting. Done.
case v == locked:
- // Two notewakeups! Not allowed.
+ // Two notewakeups! Not allowed.
throw("notewakeup - double wakeup")
default:
// Must be the waiting m. Wake it up.
diff --git a/src/runtime/mgc.go b/src/runtime/mgc.go
index 0e57d960c4..5708d4afa6 100644
--- a/src/runtime/mgc.go
+++ b/src/runtime/mgc.go
@@ -1235,7 +1235,7 @@ func gcStart(mode gcMode, trigger gcTrigger) {
}
}
- // Ok, we're doing it! Stop everybody else
+ // Ok, we're doing it! Stop everybody else
semacquire(&worldsema)
if trace.enabled {
diff --git a/src/runtime/panic.go b/src/runtime/panic.go
index 2a7acb7797..1f8e37e14f 100644
--- a/src/runtime/panic.go
+++ b/src/runtime/panic.go
@@ -680,7 +680,7 @@ func startpanic_m() {
exit(4)
fallthrough
default:
- // Can't even print! Just exit.
+ // Can't even print! Just exit.
exit(5)
}
}