From 290fbd5a50c74e3fd7087e71fd8e5ceb3dfdec35 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Tue, 25 Mar 2025 11:56:13 +0000 Subject: [PATCH] Fix typo in `FilingBugReports.md` There's no such tool as `swift-parse-cli`, the instructions clearly were referring to `swift-parser-cli` instead. --- .../SwiftBasicFormat/SwiftBasicFormat.docc/FilingBugReports.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SwiftBasicFormat/SwiftBasicFormat.docc/FilingBugReports.md b/Sources/SwiftBasicFormat/SwiftBasicFormat.docc/FilingBugReports.md index a79eccaaa66..cbcfdf9c447 100644 --- a/Sources/SwiftBasicFormat/SwiftBasicFormat.docc/FilingBugReports.md +++ b/Sources/SwiftBasicFormat/SwiftBasicFormat.docc/FilingBugReports.md @@ -10,7 +10,7 @@ swift build --package-path SwiftParserCLI ``` or openning `SwiftParserCLI` package and building the `swift-parser-cli` target in Xcode. -1. After you have built `swift-parse-cli`, you can format a single source file using BasicFormat by running the following command. If you are only experiencing the issue while formatting a single node, e.g. while creating an `AccessorDeclSyntax` inside a macro, you can additionally pass the type of the node as `--node-type AccessorDeclSyntax` +1. After you have built `swift-parser-cli`, you can format a single source file using BasicFormat by running the following command. If you are only experiencing the issue while formatting a single node, e.g. while creating an `AccessorDeclSyntax` inside a macro, you can additionally pass the type of the node as `--node-type AccessorDeclSyntax` ``` swift-parser-cli basic-format /path/to/file/that/formats/incorrectly.swift ```