Skip to content

Commit abae210

Browse files
Nick Ficanoclaude
andcommitted
chore: replace ellipsis character with three dots in comments
Mechanical substitution of `…` with `...` across recipe scripts, the Cli project file comment, and the Giraffe handler doc comment. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent f8faed8 commit abae210

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

recipes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ dotnet script Client.fsx
102102

103103
A bridge process that speaks [MCP](https://modelcontextprotocol.io) over
104104
`stdio` and forwards every `CallToolRequest` to an ARCP runtime over
105-
WebSocket. Once registered with an MCP host (Claude Desktop, Cursor, )
105+
WebSocket. Once registered with an MCP host (Claude Desktop, Cursor, ...)
106106
the host can invoke the `research` tool without knowing anything about ARCP.
107107

108108
One long-lived `ArcpClient` is shared across all MCP requests in the

recipes/mcp-skill/Server.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// mcp-skill — Server
33
//
44
// Exposes an ARCP agent as an MCP (Model Context Protocol) tool so any
5-
// MCP host (Claude Desktop, Cursor, Continue, ) can invoke it without
5+
// MCP host (Claude Desktop, Cursor, Continue, ...) can invoke it without
66
// knowing anything about ARCP.
77
//
88
// Architecture:

recipes/stream-resume/Client.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ let run () =
118118

119119
printfn "=== Assembled article (%d chars, %d chunks) ===" article.Length chunks.Count
120120
printfn ""
121-
printfn "%s" (if article.Length > 500 then article.[..499] + "" else article)
121+
printfn "%s" (if article.Length > 500 then article.[..499] + "..." else article)
122122
printfn ""
123123
printfn "Job metadata: %s" (output.GetRawText())
124124
| Error err ->

src/Arcp.Cli/Arcp.Cli.fsproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
which places Arcp.dll (and .pdb/.xml) in publish/ — these are
2121
correctly packed into tools/net10.0/any/.
2222
2. Because Private=true (default), Arcp.dll is also copied into
23-
Arcp.Cli's own build-output dir (bin//net10.0/). The NuGet
23+
Arcp.Cli's own build-output dir (bin/.../net10.0/). The NuGet
2424
pack task then maps *all* build-output files to tools/net10.0/any/
2525
as well, producing a duplicate entry → NU5050.
2626
3. The project-reference mechanism (separate from build output)

src/Arcp.Giraffe/GiraffeEndpoint.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ open ARCP.Runtime
1212

1313
/// Giraffe `HttpHandler` that upgrades to a WebSocket and hands
1414
/// the resulting transport to an `ArcpServer`. Composes inside
15-
/// `choose [ ]` pipelines.
15+
/// `choose [ ... ]` pipelines.
1616
[<AutoOpen>]
1717
module ArcpGiraffe =
1818
let useArcp (path: string) (server: ArcpServer) : HttpHandler =

0 commit comments

Comments
 (0)