Add consolidated tk events documentation#323
Conversation
🧪 CI InsightsHere's what we observed from your CI run for a61d772. 🟢 All jobs passed!But CI Insights is watching 👀 |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| if len(entries) != 3 { | ||
| t.Fatalf("expected 3 entries, got %d", len(entries)) | ||
| } |
There was a problem hiding this comment.
Correct expected inline doc entry count
Go groups adjacent line comments into a single ast.CommentGroup, and extractFromFile processes one DocEntry per comment group/topic (see extractor.go lines 111-121, 276-295). In the inline sample the first two //lion:inline-semantics lines are contiguous, so the extractor will yield two entries, not three. The new assertion expecting len(entries) == 3 therefore fails every run.
Useful? React with 👍 / 👎.
Summary
eventstopicevents.mdwith per-event sections and updating existing event pages and indexTesting
Codex Task