From 67e1e00ff589238ed484a454b27ed77d5d20ac6d Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 21 May 2023 16:30:53 -0700 Subject: [PATCH] copy --- README.md | 2 +- docs/ctags.md | 2 +- examples/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0e3d0283c..4c2ffc973 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Here are some example transcripts that show how you can chat with `aider` to gen * [**Complex Multi-file Change with Debugging**](https://aider.chat/examples/complex-change.html): A complex code change involving multiple source files and debugging. -* [**Create Black Box Test**](add-test.md): Creating a "black box" test case without access to the source of the method being tested, using only a [ctags based repo map](https://aider.chat/docs/ctags.html). +* [**Create a Black Box Test Case**](add-test.md): Creating a "black box" test case without access to the source of the method being tested, using only a [ctags based repo map](https://aider.chat/docs/ctags.html). You can find more chat transcripts on the [examples page](https://aider.chat/examples/). diff --git a/docs/ctags.md b/docs/ctags.md index cb0a0743e..f7c7d7c17 100644 --- a/docs/ctags.md +++ b/docs/ctags.md @@ -54,7 +54,7 @@ The latest version of `aider` sends a **repo map** to GPT along with each change request. The map contains a list of all the files in the repo, along with the symbols which are defined in each file. Callables like functions and methods also include their signatures. Here's a -piece of the map for the aider repo, just for the +piece of the map of the aider repo, just mapping the [main.py](https://github.com/paul-gauthier/aider/blob/main/aider/main.py) file: ``` diff --git a/examples/README.md b/examples/README.md index 44fc8f60f..072d6fda1 100644 --- a/examples/README.md +++ b/examples/README.md @@ -17,7 +17,7 @@ In the chats, you'll see a varity of coding tasks like generating new code, edit * [**Automatically Update Docs**](update-docs.md): Automatically updating documentation based on the latest version of the main() function. -* [**Create Black Box Test**](add-test.md): Creating a "black box" test case without access to the source of the method being tested, using only a [ctags based repo map](https://aider.chat/docs/ctags.html). +* [**Create a Black Box Test Case**](add-test.md): Creating a "black box" test case without access to the source of the method being tested, using only a [ctags based repo map](https://aider.chat/docs/ctags.html). * [**Editing an Asciinema Cast File**](asciinema.md): Editing escape sequences in an `asciinema` screencast file.