Skip to content

Commit 6d91d12

Browse files
Nick Ficanoclaude
andcommitted
chore: replace unicode ellipsis with ASCII ... across sources
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent b034675 commit 6d91d12

13 files changed

Lines changed: 15 additions & 15 deletions

File tree

diagrams/architecture-dark.dot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ digraph ARCPTypescriptSDK {
9494
penwidth=1.0;
9595

9696
AgentA [label="agent: echo"];
97-
AgentB [label="agent: "];
97+
AgentB [label="agent: ..."];
9898

9999
AgentA -> AgentB [style=invis];
100100
{ rank=same; AgentA; AgentB; }

diagrams/architecture-dark.svg

Lines changed: 1 addition & 1 deletion
Loading

diagrams/architecture-light.dot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ digraph ARCPTypescriptSDK {
9999
penwidth=1.0;
100100

101101
AgentA [label="agent: echo"];
102-
AgentB [label="agent: "];
102+
AgentB [label="agent: ..."];
103103

104104
AgentA -> AgentB [style=invis];
105105
{ rank=same; AgentA; AgentB; }

diagrams/architecture-light.svg

Lines changed: 1 addition & 1 deletion
Loading

diagrams/job-lifecycle-dark.dot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,6 @@ digraph ARCPJobLifecycle {
8686
Running -> Submit [
8787
style=dashed, color="#F472B6", penwidth=1.1,
8888
constraint=false,
89-
label=<<FONT COLOR="#F472B6">job.event[]</FONT>>, fontsize=9
89+
label=<<FONT COLOR="#F472B6">job.event[...]</FONT>>, fontsize=9
9090
];
9191
}

diagrams/job-lifecycle-dark.svg

Lines changed: 1 addition & 1 deletion
Loading

diagrams/job-lifecycle-light.dot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ digraph ARCPJobLifecycle {
9292
Running -> Submit [
9393
style=dashed, color="#F472B6", penwidth=1.1,
9494
constraint=false,
95-
label=<<FONT COLOR="#DB2777">job.event[]</FONT>>, fontsize=9
95+
label=<<FONT COLOR="#DB2777">job.event[...]</FONT>>, fontsize=9
9696
];
9797
}

diagrams/job-lifecycle-light.svg

Lines changed: 1 addition & 1 deletion
Loading

packages/client/test/client-effect.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function startFakeRuntime(server: Transport): {
105105
});
106106
return;
107107
}
108-
// Other inbound types (session.bye, session.ack, ) are ignored by the
108+
// Other inbound types (session.bye, session.ack, ...) are ignored by the
109109
// fake runtime.
110110
});
111111
return {

packages/core/test/messages/artifacts.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describe("ArtifactRefSchema (Effect Schema)", () => {
9090
describe("encode — round-trip", () => {
9191
it("preserves the input shape through decode → encode", async () => {
9292
const input = {
93-
uri: "ipfs://Qm",
93+
uri: "ipfs://Qm...",
9494
content_type: "image/png",
9595
byte_size: 42,
9696
sha256: "abc",

0 commit comments

Comments
 (0)