[go] context: fix outdated documentation

9 views
Skip to first unread message

Gerrit Bot (Gerrit)

unread,
Feb 9, 2026, 1:07:04 PMFeb 9
to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

Gerrit Bot has uploaded the change for review

Commit message

context: fix outdated documentation

Hello maintainers,

This change modifies the documentation provided for "context" package in the standard library. The documentation provided was outdated but now has been fixed.

NOTE: Due to my account being under 18 I can't access Gerrit.

Fixes: https://github.com/golang/go/issues/77478
Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
GitHub-Last-Rev: 15cab64e4f5f4aa53b1309c9816e7a84eca7c663
GitHub-Pull-Request: golang/go#77514

Change diff

diff --git a/src/context/context.go b/src/context/context.go
index d00ac67..59776de 100644
--- a/src/context/context.go
+++ b/src/context/context.go
@@ -25,8 +25,9 @@
// checks that CancelFuncs are used on all control-flow paths.
//
// The [WithCancelCause], [WithDeadlineCause], and [WithTimeoutCause] functions
-// return a [CancelCauseFunc], which takes an error and records it as
-// the cancellation cause. Calling [Cause] on the canceled context
+// return a [CancelCauseFunc], which takes an error and records it as the cancellattion cause.
+// [WithDeadlineCause] and [WithTimeoutCause] take a cause to use after the deadline has elapsed.
+// Calling [Cause] on the canceled context
// or any of its children retrieves the cause. If no cause is specified,
// Cause(ctx) returns the same value as ctx.Err().
//

Change information

Files:
  • M src/context/context.go
Change size: XS
Delta: 1 file changed, 3 insertions(+), 2 deletions(-)
Open in Gerrit

Related details

Attention set is empty
Submit Requirements:
  • requirement is not satisfiedCode-Review
  • requirement satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
  • requirement is not satisfiedTryBots-Pass
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: newchange
Gerrit-Project: go
Gerrit-Branch: master
Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
Gerrit-Change-Number: 743440
Gerrit-PatchSet: 1
Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
unsatisfied_requirement
satisfied_requirement
open
diffy

Gopher Robot (Gerrit)

unread,
Feb 9, 2026, 1:07:07 PMFeb 9
to Gerrit Bot, goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com

Gopher Robot added 1 comment

Patchset-level comments
File-level comment, Patchset 1 (Latest):
Gopher Robot . unresolved

I spotted some possible problems with your PR:

  1. You have a long 158 character line in the commit message body. Please add line breaks to long lines that should be wrapped. Lines in the commit message body should be wrapped at ~76 characters unless needed for things like URLs or tables. (Note: GitHub might render long lines as soft-wrapped, so double-check in the Gerrit commit message shown above.)

Please address any problems by updating the GitHub PR.

When complete, mark this comment as 'Done' and click the [blue 'Reply' button](https://go.dev/wiki/GerritBot#i-left-a-reply-to-a-comment-in-gerrit-but-no-one-but-me-can-see-it) above. These findings are based on heuristics; if a finding does not apply, briefly reply here saying so.

To update the commit title or commit message body shown here in Gerrit, you must edit the GitHub PR title and PR description (the first comment) in the GitHub web interface using the 'Edit' button or 'Edit' menu entry there. Note: pushing a new commit to the PR will not automatically update the commit message used by Gerrit.

For more details, see:

(In general for Gerrit code reviews, the change author is expected to [log in to Gerrit](https://go-review.googlesource.com/login/) with a Gmail or other Google account and then close out each piece of feedback by marking it as 'Done' if implemented as suggested or otherwise reply to each review comment. See the [Review](https://go.dev/doc/contribute#review) section of the Contributing Guide for details.)

Open in Gerrit

Related details

Attention set is empty
Submit Requirements:
    • requirement is not satisfiedCode-Review
    • requirement is not satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement is not satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: comment
    Gerrit-Project: go
    Gerrit-Branch: master
    Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
    Gerrit-Change-Number: 743440
    Gerrit-PatchSet: 1
    Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-Comment-Date: Mon, 09 Feb 2026 18:07:02 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    unsatisfied_requirement
    open
    diffy

    Damien Neil (Gerrit)

    unread,
    Feb 10, 2026, 7:26:13 PMFeb 10
    to Gerrit Bot, goph...@pubsubhelper.golang.org, Sameer Ajmani, Gopher Robot, golang-co...@googlegroups.com
    Attention needed from Sameer Ajmani

    Damien Neil added 1 comment

    File src/context/context.go
    Line 30, Patchset 1 (Latest):// Calling [Cause] on the canceled context
    Damien Neil . unresolved

    Thanks.

    This doesn't fix the key problem with the existing documentation,
    which is that WithDeadlineCause and WithTimeoutCause don't actually
    return a CancelCauseFunc.

    How about something like the following:

    ```
    // A context may be canceled with a cause, where the cause is an error
    // describing the reason for cancellation in more detail.


    // The [WithCancelCause], [WithDeadlineCause], and [WithTimeoutCause] functions

    // set the cause for a canceled context. Calling [Cause] on the canceled context


    // or any of its children retrieves the cause. If no cause is specified,
    // Cause(ctx) returns the same value as ctx.Err().

    ```

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Sameer Ajmani
    Submit Requirements:
    • requirement is not satisfiedCode-Review
    • requirement is not satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement is not satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: comment
    Gerrit-Project: go
    Gerrit-Branch: master
    Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
    Gerrit-Change-Number: 743440
    Gerrit-PatchSet: 1
    Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
    Gerrit-Reviewer: Damien Neil <dn...@google.com>
    Gerrit-Reviewer: Sameer Ajmani <sam...@golang.org>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-Attention: Sameer Ajmani <sam...@golang.org>
    Gerrit-Comment-Date: Wed, 11 Feb 2026 00:26:07 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    unsatisfied_requirement
    open
    diffy

    Gerrit Bot (Gerrit)

    unread,
    Feb 11, 2026, 9:14:47 AMFeb 11
    to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
    Attention needed from Damien Neil

    Gerrit Bot uploaded new patchset

    Gerrit Bot uploaded patch set #2 to this change.
    Open in Gerrit

    Related details

    Attention is currently required from:
    • Damien Neil
    Submit Requirements:
    • requirement is not satisfiedCode-Review
    • requirement is not satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement is not satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: newpatchset
    Gerrit-Project: go
    Gerrit-Branch: master
    Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
    Gerrit-Change-Number: 743440
    Gerrit-PatchSet: 2
    Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
    Gerrit-Reviewer: Damien Neil <dn...@google.com>
    Gerrit-CC: Gopher Robot <go...@golang.org>
    Gerrit-CC: Sameer Ajmani <sam...@golang.org>
    Gerrit-Attention: Damien Neil <dn...@google.com>
    unsatisfied_requirement
    open
    diffy

    Damien Neil (Gerrit)

    unread,
    Feb 23, 2026, 5:48:41 PMFeb 23
    to Gerrit Bot, goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
    Attention needed from Damien Neil

    Damien Neil uploaded new patchset

    Damien Neil uploaded patch set #3 to the change originally created by Gerrit Bot.
    Open in Gerrit

    Related details

    Attention is currently required from:
    • Damien Neil
    Submit Requirements:
    • requirement is not satisfiedCode-Review
    • requirement is not satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement is not satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: newpatchset
    Gerrit-Project: go
    Gerrit-Branch: master
    Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
    Gerrit-Change-Number: 743440
    Gerrit-PatchSet: 3
    unsatisfied_requirement
    open
    diffy

    Damien Neil (Gerrit)

    unread,
    Feb 23, 2026, 5:49:03 PMFeb 23
    to Gerrit Bot, goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
    Attention needed from Damien Neil

    Damien Neil uploaded new patchset

    Damien Neil uploaded patch set #4 to the change originally created by Gerrit Bot.
    Open in Gerrit

    Related details

    Attention is currently required from:
    • Damien Neil
    Submit Requirements:
    • requirement is not satisfiedCode-Review
    • requirement is not satisfiedNo-Unresolved-Comments
    • requirement is not satisfiedReview-Enforcement
    • requirement is not satisfiedTryBots-Pass
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: newpatchset
    Gerrit-Project: go
    Gerrit-Branch: master
    Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
    Gerrit-Change-Number: 743440
    Gerrit-PatchSet: 4
    unsatisfied_requirement
    open
    diffy

    Damien Neil (Gerrit)

    unread,
    Feb 23, 2026, 5:49:20 PMFeb 23
    to Gerrit Bot, goph...@pubsubhelper.golang.org, Sameer Ajmani, Gopher Robot, golang-co...@googlegroups.com

    Damien Neil voted and added 3 comments

    Votes added by Damien Neil

    Commit-Queue+1

    3 comments

    Patchset-level comments
    File-level comment, Patchset 1:
    Gopher Robot . resolved

    I spotted some possible problems with your PR:

      1. You have a long 158 character line in the commit message body. Please add line breaks to long lines that should be wrapped. Lines in the commit message body should be wrapped at ~76 characters unless needed for things like URLs or tables. (Note: GitHub might render long lines as soft-wrapped, so double-check in the Gerrit commit message shown above.)

    Please address any problems by updating the GitHub PR.

    When complete, mark this comment as 'Done' and click the [blue 'Reply' button](https://go.dev/wiki/GerritBot#i-left-a-reply-to-a-comment-in-gerrit-but-no-one-but-me-can-see-it) above. These findings are based on heuristics; if a finding does not apply, briefly reply here saying so.

    To update the commit title or commit message body shown here in Gerrit, you must edit the GitHub PR title and PR description (the first comment) in the GitHub web interface using the 'Edit' button or 'Edit' menu entry there. Note: pushing a new commit to the PR will not automatically update the commit message used by Gerrit.

    For more details, see:

    (In general for Gerrit code reviews, the change author is expected to [log in to Gerrit](https://go-review.googlesource.com/login/) with a Gmail or other Google account and then close out each piece of feedback by marking it as 'Done' if implemented as suggested or otherwise reply to each review comment. See the [Review](https://go.dev/doc/contribute#review) section of the Contributing Guide for details.)

    Damien Neil

    Acknowledged

    File-level comment, Patchset 4 (Latest):
    Damien Neil . resolved

    Thanks.

    File src/context/context.go
    Line 30, Patchset 1:// Calling [Cause] on the canceled context
    Damien Neil . resolved

    Thanks.

    This doesn't fix the key problem with the existing documentation,
    which is that WithDeadlineCause and WithTimeoutCause don't actually
    return a CancelCauseFunc.

    How about something like the following:

    ```
    // A context may be canceled with a cause, where the cause is an error
    // describing the reason for cancellation in more detail.
    // The [WithCancelCause], [WithDeadlineCause], and [WithTimeoutCause] functions
    // set the cause for a canceled context. Calling [Cause] on the canceled context
    // or any of its children retrieves the cause. If no cause is specified,
    // Cause(ctx) returns the same value as ctx.Err().
    ```

    Damien Neil

    Done

    Open in Gerrit

    Related details

    Attention set is empty
    Submit Requirements:
      • requirement is not satisfiedCode-Review
      • requirement satisfiedNo-Unresolved-Comments
      • requirement is not satisfiedReview-Enforcement
      • requirement is not satisfiedTryBots-Pass
      Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
      Gerrit-MessageType: comment
      Gerrit-Project: go
      Gerrit-Branch: master
      Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
      Gerrit-Change-Number: 743440
      Gerrit-PatchSet: 4
      Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
      Gerrit-Reviewer: Damien Neil <dn...@google.com>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: Sameer Ajmani <sam...@golang.org>
      Gerrit-Comment-Date: Mon, 23 Feb 2026 22:49:16 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: Yes
      Comment-In-Reply-To: Gopher Robot <go...@golang.org>
      Comment-In-Reply-To: Damien Neil <dn...@google.com>
      unsatisfied_requirement
      satisfied_requirement
      open
      diffy

      Damien Neil (Gerrit)

      unread,
      Feb 23, 2026, 5:50:11 PMFeb 23
      to Gerrit Bot, goph...@pubsubhelper.golang.org, Nicholas Husin, Go LUCI, Sameer Ajmani, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Nicholas Husin

      Damien Neil voted Code-Review+2

      Code-Review+2
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Nicholas Husin
      Submit Requirements:
      • requirement is not satisfiedCode-Review
      • requirement satisfiedNo-Unresolved-Comments
      • requirement is not satisfiedReview-Enforcement
      • requirement is not satisfiedTryBots-Pass
      Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
      Gerrit-MessageType: comment
      Gerrit-Project: go
      Gerrit-Branch: master
      Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
      Gerrit-Change-Number: 743440
      Gerrit-PatchSet: 4
      Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
      Gerrit-Reviewer: Damien Neil <dn...@google.com>
      Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: Sameer Ajmani <sam...@golang.org>
      Gerrit-Attention: Nicholas Husin <n...@golang.org>
      Gerrit-Comment-Date: Mon, 23 Feb 2026 22:50:06 +0000
      Gerrit-HasComments: No
      Gerrit-Has-Labels: Yes
      unsatisfied_requirement
      satisfied_requirement
      open
      diffy

      Nicholas Husin (Gerrit)

      unread,
      Feb 23, 2026, 5:50:27 PMFeb 23
      to Damien Neil, Gerrit Bot, goph...@pubsubhelper.golang.org, Go LUCI, Sameer Ajmani, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Damien Neil

      Nicholas Husin voted Code-Review+2

      Code-Review+2
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Damien Neil
      Submit Requirements:
      • requirement satisfiedCode-Review
      • requirement satisfiedNo-Unresolved-Comments
      • requirement is not satisfiedReview-Enforcement
      • requirement is not satisfiedTryBots-Pass
      Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
      Gerrit-MessageType: comment
      Gerrit-Project: go
      Gerrit-Branch: master
      Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
      Gerrit-Change-Number: 743440
      Gerrit-PatchSet: 4
      Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
      Gerrit-Reviewer: Damien Neil <dn...@google.com>
      Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
      Gerrit-CC: Gopher Robot <go...@golang.org>
      Gerrit-CC: Sameer Ajmani <sam...@golang.org>
      Gerrit-Attention: Damien Neil <dn...@google.com>
      Gerrit-Comment-Date: Mon, 23 Feb 2026 22:50:23 +0000
      Gerrit-HasComments: No
      Gerrit-Has-Labels: Yes
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Nicholas Husin (Gerrit)

      unread,
      Feb 23, 2026, 5:50:37 PMFeb 23
      to Damien Neil, Gerrit Bot, goph...@pubsubhelper.golang.org, Nicholas Husin, Go LUCI, Sameer Ajmani, Gopher Robot, golang-co...@googlegroups.com
      Attention needed from Damien Neil

      Nicholas Husin voted Code-Review+1

      Code-Review+1
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Damien Neil
      Submit Requirements:
        • requirement satisfiedCode-Review
        • requirement satisfiedNo-Unresolved-Comments
        • requirement satisfiedReview-Enforcement
        • requirement is not satisfiedTryBots-Pass
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: comment
        Gerrit-Project: go
        Gerrit-Branch: master
        Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
        Gerrit-Change-Number: 743440
        Gerrit-PatchSet: 4
        Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
        Gerrit-Reviewer: Damien Neil <dn...@google.com>
        Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
        Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
        Gerrit-CC: Gopher Robot <go...@golang.org>
        Gerrit-CC: Sameer Ajmani <sam...@golang.org>
        Gerrit-Attention: Damien Neil <dn...@google.com>
        Gerrit-Comment-Date: Mon, 23 Feb 2026 22:50:29 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Gerrit Bot (Gerrit)

        unread,
        Feb 23, 2026, 5:55:49 PMFeb 23
        to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
        Attention needed from Damien Neil, Nicholas Husin and Nicholas Husin

        Gerrit Bot uploaded new patchset

        Gerrit Bot uploaded patch set #5 to this change.
        Open in Gerrit

        Related details

        Attention is currently required from:
        • Damien Neil
        • Nicholas Husin
        • Nicholas Husin
        Submit Requirements:
        • requirement satisfiedCode-Review
        • requirement satisfiedNo-Unresolved-Comments
        • requirement satisfiedReview-Enforcement
        • requirement is not satisfiedTryBots-Pass
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: newpatchset
        Gerrit-Project: go
        Gerrit-Branch: master
        Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
        Gerrit-Change-Number: 743440
        Gerrit-PatchSet: 5
        Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
        Gerrit-Reviewer: Damien Neil <dn...@google.com>
        Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
        Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
        Gerrit-CC: Gopher Robot <go...@golang.org>
        Gerrit-CC: Sameer Ajmani <sam...@golang.org>
        Gerrit-Attention: Nicholas Husin <hu...@google.com>
        Gerrit-Attention: Damien Neil <dn...@google.com>
        Gerrit-Attention: Nicholas Husin <n...@golang.org>
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Damien Neil (Gerrit)

        unread,
        Feb 23, 2026, 6:20:37 PMFeb 23
        to Gerrit Bot, goph...@pubsubhelper.golang.org, Go LUCI, Nicholas Husin, Nicholas Husin, Sameer Ajmani, Gopher Robot, golang-co...@googlegroups.com
        Attention needed from Nicholas Husin and Nicholas Husin

        Damien Neil voted and added 1 comment

        Votes added by Damien Neil

        Code-Review+2
        Commit-Queue+1

        1 comment

        Commit Message
        Line 15, Patchset 5 (Latest):Fixes: https://github.com/golang/go/issues/77478
        Damien Neil . unresolved

        Drat, I forgot that GerritBot will overwrite any edits I make to the CL description.

        Please update the GitHub PR description to:

        ```
        context: fix outdated documentation for With*Cause

        This change modifies the documentation provided for "context" package in
        the standard library. The documentation provided was outdated but now
        has been fixed.

        Fixes #77478
        ```

        Specifically:

        • put a bit more detail in the CL summary as to what's being fixed
        • wrap paragraph at ~76 characters
        • drop NOTE: line which doesn't need to go into the submitted CL

        Thanks!

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Nicholas Husin
        • Nicholas Husin
        Submit Requirements:
        • requirement satisfiedCode-Review
        • requirement is not satisfiedNo-Unresolved-Comments
        • requirement satisfiedReview-Enforcement
        • requirement satisfiedTryBots-Pass
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: comment
        Gerrit-Project: go
        Gerrit-Branch: master
        Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
        Gerrit-Change-Number: 743440
        Gerrit-PatchSet: 5
        Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
        Gerrit-Reviewer: Damien Neil <dn...@google.com>
        Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
        Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
        Gerrit-CC: Gopher Robot <go...@golang.org>
        Gerrit-CC: Sameer Ajmani <sam...@golang.org>
        Gerrit-Attention: Nicholas Husin <hu...@google.com>
        Gerrit-Attention: Nicholas Husin <n...@golang.org>
        Gerrit-Comment-Date: Mon, 23 Feb 2026 23:20:34 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Gerrit Bot (Gerrit)

        unread,
        Mar 11, 2026, 12:39:19 PMMar 11
        to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
        Attention needed from Damien Neil, Nicholas Husin and Nicholas Husin

        Gerrit Bot uploaded new patchset

        Gerrit Bot uploaded patch set #6 to this change.
        Open in Gerrit

        Related details

        Attention is currently required from:
        • Damien Neil
        • Nicholas Husin
        • Nicholas Husin
        Submit Requirements:
        • requirement satisfiedCode-Review
        • requirement is not satisfiedNo-Unresolved-Comments
        • requirement satisfiedReview-Enforcement
        • requirement satisfiedTryBots-Pass
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: newpatchset
        Gerrit-Project: go
        Gerrit-Branch: master
        Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
        Gerrit-Change-Number: 743440
        Gerrit-PatchSet: 6
        Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
        Gerrit-Reviewer: Damien Neil <dn...@google.com>
        Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
        Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
        Gerrit-CC: Gopher Robot <go...@golang.org>
        Gerrit-CC: Sameer Ajmani <sam...@golang.org>
        Gerrit-Attention: Nicholas Husin <hu...@google.com>
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Sean Liao (Gerrit)

        unread,
        Mar 11, 2026, 7:48:53 PMMar 11
        to Gerrit Bot, goph...@pubsubhelper.golang.org, Go LUCI, Nicholas Husin, Nicholas Husin, Damien Neil, Sameer Ajmani, Gopher Robot, golang-co...@googlegroups.com

        Sean Liao added 1 comment

        Commit Message
        Line 13, Patchset 6 (Latest):has been fixed. This fix ensures that the document remains consistent and up to date according to the source code of the context package. Submitting this fix ensures that real world program behavior matches with the official documentation.
        Sean Liao . unresolved

        This line shouldn't be here.

        Open in Gerrit

        Related details

        Attention set is empty
        Submit Requirements:
        • requirement satisfiedCode-Review
        • requirement is not satisfiedNo-Unresolved-Comments
        • requirement satisfiedReview-Enforcement
        • requirement satisfiedTryBots-Pass
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: comment
        Gerrit-Project: go
        Gerrit-Branch: master
        Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
        Gerrit-Change-Number: 743440
        Gerrit-PatchSet: 6
        Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
        Gerrit-Reviewer: Damien Neil <dn...@google.com>
        Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
        Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
        Gerrit-CC: Gopher Robot <go...@golang.org>
        Gerrit-CC: Sameer Ajmani <sam...@golang.org>
        Gerrit-CC: Sean Liao <se...@liao.dev>
        Gerrit-Comment-Date: Wed, 11 Mar 2026 23:48:45 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Gerrit Bot (Gerrit)

        unread,
        Mar 12, 2026, 5:04:13 PMMar 12
        to goph...@pubsubhelper.golang.org, golang-co...@googlegroups.com
        Attention needed from Damien Neil, Nicholas Husin and Nicholas Husin

        Gerrit Bot uploaded new patchset

        Gerrit Bot uploaded patch set #7 to this change.
        Open in Gerrit

        Related details

        Attention is currently required from:
        • Damien Neil
        • Nicholas Husin
        • Nicholas Husin
        Submit Requirements:
        • requirement satisfiedCode-Review
        • requirement is not satisfiedNo-Unresolved-Comments
        • requirement satisfiedReview-Enforcement
        • requirement satisfiedTryBots-Pass
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: newpatchset
        Gerrit-Project: go
        Gerrit-Branch: master
        Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
        Gerrit-Change-Number: 743440
        Gerrit-PatchSet: 7
        Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
        Gerrit-Reviewer: Damien Neil <dn...@google.com>
        Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
        Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
        Gerrit-CC: Gopher Robot <go...@golang.org>
        Gerrit-CC: Sameer Ajmani <sam...@golang.org>
        Gerrit-CC: Sean Liao <se...@liao.dev>
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Nicholas Husin (Gerrit)

        unread,
        Mar 12, 2026, 5:09:11 PMMar 12
        to Gerrit Bot, goph...@pubsubhelper.golang.org, Go LUCI, Nicholas Husin, Damien Neil, Sameer Ajmani, Gopher Robot, golang-co...@googlegroups.com
        Attention needed from Damien Neil and Nicholas Husin

        Nicholas Husin voted and added 1 comment

        Votes added by Nicholas Husin

        Code-Review+2

        1 comment

        Commit Message
        Line 7, Patchset 7 (Latest):context: fix outdated documentation
        Nicholas Husin . unresolved

        Seems like another subject line accidentally got inserted?

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Damien Neil
        • Nicholas Husin
        Submit Requirements:
        • requirement satisfiedCode-Review
        • requirement is not satisfiedNo-Unresolved-Comments
        • requirement satisfiedReview-Enforcement
        • requirement satisfiedTryBots-Pass
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: comment
        Gerrit-Project: go
        Gerrit-Branch: master
        Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
        Gerrit-Change-Number: 743440
        Gerrit-PatchSet: 7
        Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
        Gerrit-Reviewer: Damien Neil <dn...@google.com>
        Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
        Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
        Gerrit-CC: Gopher Robot <go...@golang.org>
        Gerrit-CC: Sameer Ajmani <sam...@golang.org>
        Gerrit-CC: Sean Liao <se...@liao.dev>
        Gerrit-Attention: Nicholas Husin <hu...@google.com>
        Gerrit-Attention: Damien Neil <dn...@google.com>
        Gerrit-Comment-Date: Thu, 12 Mar 2026 21:09:08 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Sean Liao (Gerrit)

        unread,
        6:05 PM (5 hours ago) 6:05 PM
        to Gerrit Bot, goph...@pubsubhelper.golang.org, golang...@luci-project-accounts.iam.gserviceaccount.com, Nicholas Husin, Nicholas Husin, Damien Neil, Sameer Ajmani, Gopher Robot, golang-co...@googlegroups.com

        Sean Liao abandoned this change.

        View Change

        Abandoned

        Sean Liao abandoned this change

        Related details

        Attention set is empty
        Submit Requirements:
        • requirement satisfiedCode-Review
        • requirement is not satisfiedNo-Unresolved-Comments
        • requirement satisfiedReview-Enforcement
        • requirement satisfiedTryBots-Pass
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: abandon
        Gerrit-Project: go
        Gerrit-Branch: master
        Gerrit-Change-Id: Icbb42d5a427148befcf91740705758210ab9cb2b
        Gerrit-Change-Number: 743440
        Gerrit-PatchSet: 7
        Gerrit-Owner: Gerrit Bot <letsus...@gmail.com>
        Gerrit-Reviewer: Damien Neil <dn...@google.com>
        Gerrit-Reviewer: Nicholas Husin <hu...@google.com>
        Gerrit-Reviewer: Nicholas Husin <n...@golang.org>
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy
        Reply all
        Reply to author
        Forward
        0 new messages