From 5e9450a9cd29e7178a91b013645b0b475ddf59da Mon Sep 17 00:00:00 2001 From: Alex Guretzki Date: Mon, 9 Dec 2024 15:25:38 +0100 Subject: [PATCH] Fixing some documentation --- .spi.yml | 3 ++- .../Documentation.docc/PADOutputGenerator.md | 5 ++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.spi.yml b/.spi.yml index a393f57..76e81bf 100644 --- a/.spi.yml +++ b/.spi.yml @@ -8,5 +8,6 @@ builder: PADProjectBuilder, PADPackageFileAnalyzer, PADSwiftInterfaceDiff, - PADOutputGenerator + PADOutputGenerator, + PADSwiftInterfaceFileLocator ] diff --git a/Sources/PublicModules/PADOutputGenerator/Documentation.docc/PADOutputGenerator.md b/Sources/PublicModules/PADOutputGenerator/Documentation.docc/PADOutputGenerator.md index eea682e..b6970fb 100644 --- a/Sources/PublicModules/PADOutputGenerator/Documentation.docc/PADOutputGenerator.md +++ b/Sources/PublicModules/PADOutputGenerator/Documentation.docc/PADOutputGenerator.md @@ -6,12 +6,11 @@ Allows generation of human readable output from the provided information ```swift // Generated in previous steps -let warnings: [String] = ... let changes: [String: [Change]] = ... +let allTargets: [String] = ... let oldVersionName: String = ... let newVersionName: String = ... -let allTargets: [String] = ... -let swiftInterfaceFiles: [SwiftInterfaceFile] = ... +let warnings: [String] = ... let outputGenerator: any OutputGenerating = MarkdownOutputGenerator()