Skip to content

Commit 42959b0

Browse files
nficanoclaude
andcommitted
docs: replace unicode ellipsis with ascii in code blocks
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 5a3b68d commit 42959b0

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/guides/errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ server.RegisterAgent("strict", async (ctx, ct) =>
9393
if (!ctx.Lease.Contains(LeaseNamespaces.FsRead))
9494
throw new PermissionDeniedException("fs.read required");
9595

96-
//
96+
// ...
9797
return result;
9898
});
9999
```

docs/guides/job-events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ type — the body shape depends on the kind (spec §8.1).
2424
```csharp
2525
server.RegisterAgent("researcher", async (ctx, ct) =>
2626
{
27-
await ctx.StatusAsync("starting", "Fetching data", ct);
27+
await ctx.StatusAsync("starting", "Fetching data...", ct);
2828

2929
await ctx.ToolCallAsync("fetch", callId: "c1",
3030
args: new { url = "https://api.example.com/data" }, ct);
31-
var data = /* */ "";
31+
var data = /* ... */ "";
3232
await ctx.ToolResultAsync("c1", result: data, ct);
3333

3434
await ctx.ProgressAsync(current: 1, total: 3, message: "fetched", ct);
3535

36-
await ctx.LogAsync("info", "Processing ", ct);
36+
await ctx.LogAsync("info", "Processing ...", ct);
3737
await ctx.MetricAsync("cost.inference", 0.012m, unit: "USD", ct);
3838

3939
await ctx.ArtifactRefAsync(

docs/guides/leases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ server.RegisterAgent("file-writer", async (ctx, ct) =>
5555
new ToolError { Code = ex.Code, Message = ex.Message }, ct);
5656
return null;
5757
}
58-
// perform the write
58+
// perform the write ...
5959
return new { wrote = "/workspace/src/output.cs" };
6060
});
6161
```

docs/guides/vendor-extensions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Write on the send side by populating `Extensions` before calling
3131
`ITransport.SendAsync`:
3232

3333
```csharp
34-
var env = new Envelope { /* */ };
34+
var env = new Envelope { /* ... */ };
3535
env.Extensions["x-vendor.acme.priority"] = JsonSerializer.SerializeToElement("high");
3636
await transport.SendAsync(env, ct);
3737
```
@@ -53,7 +53,7 @@ await foreach (var ev in handle.Events(ct))
5353
if (ev.Kind == "x-vendor.acme.thumbnail")
5454
{
5555
var url = ev.Body.GetProperty("url").GetString();
56-
//
56+
// ...
5757
}
5858
}
5959
```

recipes/mcp-skill/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
await ctx.LogAsync("info", $"searching knowledge base for: {topic}", rct);
2929
await Task.Delay(80, rct);
30-
await ctx.LogAsync("info", "synthesising results", rct);
30+
await ctx.LogAsync("info", "synthesising results...", rct);
3131
await Task.Delay(40, rct);
3232

3333
return new { summary = $"Research on '{topic}': 3 key findings identified." };

recipes/mcp-skill/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ manifest that Claude Code uses to discover and invoke the skill.
2222

2323
```
2424
AI assistant
25-
│ MCP tool call: research(topic=)
25+
│ MCP tool call: research(topic=...)
2626
2727
HandleResearchToolCall() ← MCP adapter
2828
│ SubmitAsync("research", { topic })

recipes/stream-resume/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
// Capture the ResumeToken before the connection closes — it lets observer-2
7575
// authenticate with the same identity and access the session's EventLog.
7676
var savedToken = obs1.ResumeToken;
77-
Console.WriteLine($"obs1 disconnecting — ResumeToken: {savedToken?[..Math.Min(12, savedToken?.Length ?? 0)]}");
77+
Console.WriteLine($"obs1 disconnecting — ResumeToken: {savedToken?[..Math.Min(12, savedToken?.Length ?? 0)]}...");
7878
await obs1.DisposeAsync();
7979

8080
// ── wait for the writer to finish ─────────────────────────────────────────────

0 commit comments

Comments
 (0)