Skip to content

Commit

Permalink
Inline comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dfed committed Dec 28, 2024
1 parent 26df2d6 commit 15927f1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Sources/SafeDICore/Models/TypeDescription.swift
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,7 @@ public enum TypeDescription: Codable, Hashable, Comparable, Sendable {
// Reference manual: https://docs.swift.org/swift-book/ReferenceManual/Types.html#grammar_type
return "\(specifiers.joined(separator: " ")) \(attributesFromList(attributes)) \(type.asSource)"
case (.none, .none):
// This case represents an error.
return type.asSource
return type.asSource // This case represents an error.
}
case let .array(element):
return "[\(element.asSource)]"
Expand Down

0 comments on commit 15927f1

Please sign in to comment.