Skip to content

Commit

Permalink
Merge pull request #420 from gubikmic/master
Browse files Browse the repository at this point in the history
Improve some property comments in PBXFileElement
  • Loading branch information
Pedro Piñera Buendía authored May 6, 2019
2 parents 5fd0f02 + 559bb39 commit 39979d5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Sources/xcodeproj/Objects/Files/PBXFileReference.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ import PathKit
public final class PBXFileReference: PBXFileElement {
// MARK: - Attributes

/// Element file encoding.
/// Text encoding of file content
public var fileEncoding: UInt?

/// Element explicit file type.
/// User-specified file type. Typically this is not set and you want to use `lastKnownFileType` instead.
public var explicitFileType: String?

/// Element last known file type.
/// Derived file type. For a file named "foo.swift" this value would be "sourcecode.swift"
public var lastKnownFileType: String?

/// Element line ending.
/// Line ending type for the file
public var lineEnding: UInt?

/// Element language specification identifier
/// Legacy programming language identifier
public var languageSpecificationIdentifier: String?

/// Element xc language specification identifier
/// Programming language identifier
public var xcLanguageSpecificationIdentifier: String?

/// Element plist structure definition identifier
/// Plist organizational family identifier
public var plistStructureDefinitionIdentifier: String?

// MARK: - Init
Expand Down

0 comments on commit 39979d5

Please sign in to comment.