Skip to content

Commit 5319b66

Browse files
authored
Merge pull request #267 from liolin/fix-typo-in-development-docs
docs: Fix typos
2 parents d0b227b + a7d65aa commit 5319b66

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/development.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Building local
44

55
- Install [babashka](https://babashka.org/).
6-
- Run `bb debug-cli`, it will geneate a JVM embeeded binary at project root where yuo can just `./eca`.
6+
- Run `bb debug-cli`, it will generate a JVM embedded binary at project root where you can just `./eca`.
77

88
## Project structure
99

@@ -40,10 +40,10 @@ The ECA codebase follows a pragmatic **layered layout** that separates concerns
4040
`src/eca/main.clj` | The CLI interface.
4141
`src/eca/nrepl.clj` | Starts an nREPL when `:debug` flag is passed.
4242

43-
Together these files implement the request flow:
43+
Together these files implement the request flow:
4444

4545
`client/editor``stdin JSON-RPC``handlers``features``llm_api``llm_provider` → results streamed back.
46-
46+
4747
With this map you can usually answer:
4848

4949
- _"Where does request X enter the system?"_ – look in `handlers.clj`.
@@ -58,7 +58,7 @@ Run with `bb test` or run test via Clojure REPL. CI will run the same task.
5858

5959
Run with `bb integration-test`, it will use your `eca` binary project root to spawn a server process and communicate with it via JSONRPC, testing the whole eca flow like an editor.
6060

61-
## Coding
61+
## Coding
6262

6363
There are several ways of finding and fixing a bug or implementing a new feature:
6464

@@ -85,7 +85,7 @@ This step-by-step feature implementation help track progress and next steps:
8585
- [ ] Support `initialize` and `initialized` methods.
8686
- [ ] Support `exit` and `shutdown` methods.
8787
- Chat
88-
- [ ] Oepn chat window
88+
- [ ] Open chat window
8989
- [ ] Send user messages via `chat/prompt` request.
9090
- [ ] Clear chat and Reset chat.
9191
- [ ] Support receive chat contents via `chat/contentReceived` notification.
@@ -106,4 +106,4 @@ This step-by-step feature implementation help track progress and next steps:
106106

107107
Create a issue to help track the effort copying and pasting these check box to help track progress, [example](https://github.com/editor-code-assistant/eca/issues/5).
108108

109-
Please provide feedback of the dificulties implementing your server, especially missing docs, to make next integrations smoother!
109+
Please provide feedback of the difficulties implementing your server, especially missing docs, to make next integrations smoother!

0 commit comments

Comments
 (0)