From ccd5545ebff5d45d0bde7033ecd4f7534d1048df Mon Sep 17 00:00:00 2001 From: josh11b Date: Thu, 5 May 2022 14:31:19 -0700 Subject: [PATCH] Fix "and" vs. "add" typo in fuzzing README (#1228) --- explorer/fuzzing/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/explorer/fuzzing/README.md b/explorer/fuzzing/README.md index 0c4ae0b657f8..9203fb7ba615 100644 --- a/explorer/fuzzing/README.md +++ b/explorer/fuzzing/README.md @@ -71,7 +71,7 @@ To incorporate AST changes into fuzzing logic: 1. Modify [proto_to_carbon.cpp](https://github.com/carbon-language/carbon-lang/blob/trunk/common/fuzzing/proto_to_carbon.cpp) which handles printing of a Carbon proto instance as a Carbon source string. - For example, and code to print newly introduced proto fields. + For example, add code to print newly introduced proto fields. 1. Make sure `proto_to_carbon_test` passes after the changes.