From 25f360090cb6a7fd0f01bc127f2a2280659757a2 Mon Sep 17 00:00:00 2001 From: David Lakin Date: Tue, 16 Apr 2024 15:31:05 -0400 Subject: [PATCH] Minor clarity improvements in `fuzzing/README.md` - Make the link text for the OSS-Fuzz test status URL more descriptive - Fix capitalization of GitPython repository name Based @EliahKagan's suggestion and feedback on: https://github.com/gitpython-developers/GitPython/pull/1901 --- fuzzing/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fuzzing/README.md b/fuzzing/README.md index 09d6fc003..65e311d4a 100644 --- a/fuzzing/README.md +++ b/fuzzing/README.md @@ -6,8 +6,8 @@ This directory contains files related to GitPython's suite of fuzz tests that ar infrastructure provided by [OSS-Fuzz][oss-fuzz-repo]. This document aims to provide necessary information for working with fuzzing in GitPython. -The latest details regarding OSS-Fuzz test status, including build logs and coverage reports, is made available -at [this link](https://introspector.oss-fuzz.com/project-profile?project=gitpython). +The latest details regarding OSS-Fuzz test status, including build logs and coverage reports, is available +on [the Open Source Fuzzing Introspection website](https://introspector.oss-fuzz.com/project-profile?project=gitpython). ## How to Contribute @@ -152,7 +152,7 @@ python infra/helper.py build_fuzzers --sanitizer $SANITIZER gitpython ``` > [!TIP] -> The `build_fuzzers` command above accepts a local file path pointing to your gitpython repository clone as the last +> The `build_fuzzers` command above accepts a local file path pointing to your GitPython repository clone as the last > argument. > This makes it easy to build fuzz targets you are developing locally in this repository without changing anything in > the OSS-Fuzz repo!