From 7061990d9a4faf364f78d4695e9af1b8c245a26d Mon Sep 17 00:00:00 2001 From: Zach Hammer Date: Tue, 22 Jun 2021 11:51:10 -0400 Subject: [PATCH] Fix typo Caught this while quoting your docs in a blog post, which I'll share once published :) --- docs/source/matchers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/matchers.rst b/docs/source/matchers.rst index eac6faa95..ae67516a6 100644 --- a/docs/source/matchers.rst +++ b/docs/source/matchers.rst @@ -5,7 +5,7 @@ Matchers ======== Matchers are provided as a way of asking whether a particular LibCST node and its -children match the a particular shape. It is possible to write a visitor that +children match a particular shape. It is possible to write a visitor that tracks attributes using ``visit_`` methods. It is also possible to implement manual instance checking and traversal of a node's children. However, both are cumbersome to write and hard to understand. Matchers offer a more concise way of