From 7e17d5e98d4bc826fb8a64a89dcf713862ed7f3b Mon Sep 17 00:00:00 2001 From: Jay Herron Date: Wed, 15 Apr 2026 00:20:07 -0600 Subject: [PATCH] docs: Corrects readme to specify correct format tool --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 23fbb5f..ffeec7a 100644 --- a/README.md +++ b/README.md @@ -250,10 +250,11 @@ When reporting an issue, please add a detailed example, and if possible a code s When creating a pull request, please adhere to the current coding style where possible, and create tests with your code so it keeps providing an awesome test coverage level 💪 -This repo uses [SwiftFormat](https://github.com/nicklockwood/SwiftFormat), and includes lint checks to enforce these formatting standards. To format your code, install `swiftformat` and run: +This repo uses the standard [swift format](https://github.com/swiftlang/swift-format), and includes lint checks to enforce these formatting standards. +To format your code, run: ```bash -swiftformat . +swift format --parallel --in-place --recursive ./ ``` ## Acknowledgements 👏