Skip to content

Commit fcb287d

Browse files
nficanoclaude
andcommitted
docs: replace typographic ellipsis with three ASCII dots
Mechanical autoformat across CONFORMANCE.md, RELEASING.md, and docs/ guides + modules — Unicode `…` (U+2026) was replaced with `...` for consistent rendering in plain-text contexts and inline code blocks. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 2769823 commit fcb287d

13 files changed

Lines changed: 23 additions & 23 deletions

CONFORMANCE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ works" is decomposed into multiple binary rows.
1818

1919
| Requirement | Status | Location |
2020
|---|---|---|
21-
| §5.1 Envelope shape (`arcp`, `id`, `type`, `payload`, ) | Implemented | [arcp-core/src/main/java/dev/arcp/core/wire/Envelope.java:22](arcp-core/src/main/java/dev/arcp/core/wire/Envelope.java#L22) |
21+
| §5.1 Envelope shape (`arcp`, `id`, `type`, `payload`, ...) | Implemented | [arcp-core/src/main/java/dev/arcp/core/wire/Envelope.java:22](arcp-core/src/main/java/dev/arcp/core/wire/Envelope.java#L22) |
2222
| §5.1 Unknown top-level fields ignored | Implemented | [arcp-core/src/main/java/dev/arcp/core/wire/ArcpMapper.java](arcp-core/src/main/java/dev/arcp/core/wire/ArcpMapper.java) sets `FAIL_ON_UNKNOWN_PROPERTIES=false` |
2323
| §5.1 `arcp` version string `"1"` | Implemented | [arcp-core/src/main/java/dev/arcp/core/wire/Envelope.java:31](arcp-core/src/main/java/dev/arcp/core/wire/Envelope.java#L31) |
2424

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Then sanity-check:
4646
`./gradlew test` output.
4747
- [ ] [`README.md`](README.md) version coordinates match the version you
4848
are about to cut (Gradle + Maven snippets).
49-
- [ ] All 10 examples print `OK ` on a fresh clone.
49+
- [ ] All 10 examples print `OK ...` on a fresh clone.
5050
- [ ] `make -C docs/diagrams` produces no diff against the committed SVGs.
5151

5252
## Cutting the release

docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ try (ArcpJettyServer server = ArcpJettyServer.builder(runtime).build().start())
9696
WebSocketTransport transport = WebSocketTransport.connect(server.uri());
9797
try (ArcpClient client = ArcpClient.builder(transport).build()) {
9898
client.connect(Duration.ofSeconds(5));
99-
// same submit / result as above
99+
// ... same submit / result as above
100100
}
101101
}
102102
```
@@ -116,7 +116,7 @@ runtime.accept(runtimeTransport);
116116

117117
// Client side (parent process, connected via pipes):
118118
StdioTransport clientTransport = StdioTransport.client(processIn, processOut);
119-
try (ArcpClient client = ArcpClient.builder(clientTransport).build()) { }
119+
try (ArcpClient client = ArcpClient.builder(clientTransport).build()) { ... }
120120
```
121121

122122
Both ends use newline-delimited JSON frames (§4.2).

docs/guides/jobs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ JobHandle handle = client.submit(
3030
.build());
3131
```
3232

33-
`client.submit()` blocks until `job.accepted` is received. The returned
33+
`client.submit(...)` blocks until `job.accepted` is received. The returned
3434
`JobHandle` carries:
3535
- `handle.jobId()` — the runtime-assigned `JobId`
3636
- `handle.agentRef()` — the resolved `name@version`
@@ -80,7 +80,7 @@ The runtime interrupts the worker virtual thread. Agents check
8080
(input, ctx) -> {
8181
for (Item item : items) {
8282
if (ctx.cancelled()) break;
83-
// process item
83+
// ... process item ...
8484
}
8585
return JobOutcome.Success.inline(results);
8686
}

docs/guides/observability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Propagation is end-to-end:
6666
## Viewing traces
6767

6868
Point the OTel SDK exporter at any compatible backend (Jaeger, Tempo,
69-
Honeycomb, Grafana Cloud):
69+
Honeycomb, Grafana Cloud...):
7070

7171
```java
7272
SdkTracerProvider provider = SdkTracerProvider.builder()

docs/guides/resume.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ disconnect and replay any missed events, without re-submitting jobs.
3131
String token = client.session().resumeToken();
3232
long lastSeq = client.session().lastReceivedSeq();
3333

34-
// transport failure — reconnect the underlying connection
34+
// ... transport failure — reconnect the underlying connection ...
3535
Transport newTransport = WebSocketTransport.connect(serverUri);
3636

3737
// 2. Resume

docs/guides/sessions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Disable auto-ack (manual mode):
9696
ArcpClient client = ArcpClient.builder(transport)
9797
.autoAck(false)
9898
.build();
99-
//
99+
// ...
100100
client.ack(handle.lastReceivedSeq());
101101
```
102102

@@ -111,7 +111,7 @@ After any disconnect, the client can reconnect and replay missed events:
111111
String resumeToken = client.session().resumeToken();
112112
long lastSeq = client.session().lastReceivedSeq();
113113

114-
// transport reconnects
114+
// ... transport reconnects ...
115115

116116
ArcpClient fresh = ArcpClient.builder(newTransport)
117117
.bearer("my-token")

docs/guides/vendor-extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ handle.events().subscribe(new Flow.Subscriber<EventBody>() {
5959
}
6060
}
6161
}
62-
// onSubscribe, onError, onComplete
62+
// ... onSubscribe, onError, onComplete ...
6363
});
6464
```
6565

docs/modules/arcp-client.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ ArcpClient client = ArcpClient.builder(transport)
3333

3434
client.connect(Duration.ofSeconds(5)); // performs session.hello / welcome
3535

36-
JobHandle handle = client.submit();
36+
JobHandle handle = client.submit(...);
3737
Page<JobSummary> page = client.listJobs(JobFilter.all());
3838
JobHandle observer = client.subscribe(jobId, SubscribeOptions.live());
3939

@@ -42,7 +42,7 @@ client.close(); // sends session.bye, closes transport
4242

4343
### `JobHandle`
4444

45-
Returned by `client.submit()` and `client.subscribe()`.
45+
Returned by `client.submit(...)` and `client.subscribe(...)`.
4646

4747
```java
4848
JobId handle.jobId();
@@ -73,7 +73,7 @@ String all = stream.toMemory(resultId);
7373
JDK `HttpClient.WebSocket` adapter:
7474

7575
```java
76-
WebSocketTransport t = WebSocketTransport.connect(URI.create("ws:///arcp"));
76+
WebSocketTransport t = WebSocketTransport.connect(URI.create("ws://.../arcp"));
7777
// or with builder for TLS / custom headers:
7878
WebSocketTransport t = WebSocketTransport.builder(uri)
7979
.httpClient(customClient)

docs/modules/arcp-tck.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public interface TckProvider extends AutoCloseable {
4848
default ArcpClient connectWithProvisionedCredentials(
4949
CredentialProvisioner provisioner,
5050
CredentialRevocationStore store) throws Exception {
51-
throw new UnsupportedOperationException("");
51+
throw new UnsupportedOperationException("...");
5252
}
5353
}
5454
```
@@ -123,7 +123,7 @@ tests to fail with `AGENT_VERSION_NOT_AVAILABLE`.
123123
## Credential assertion opt-in
124124

125125
The `§9.8 provisioned credentials` test calls
126-
`TckProvider.connectWithProvisionedCredentials()`. If your provider does not
126+
`TckProvider.connectWithProvisionedCredentials(...)`. If your provider does not
127127
override that method, the test is automatically skipped (`Assumptions.abort`)
128128
rather than failing.
129129

0 commit comments

Comments
 (0)