File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Sources/XcodeProj/Protocols Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11import Foundation
22import PathKit
33
4- /// Protocol that defines how an entity can be writed into disk
4+ /// Protocol that defines how an entity can be written to disk
55public protocol Writable {
66 /// Writes the object that conforms the protocol.
77 ///
88 /// - Parameter path: The path to write to
9- /// - Parameter override: True if the content should be overriden if it already exists.
9+ /// - Parameter override: True if the content should be overridden if it already exists.
1010 /// - Throws: writing error if something goes wrong.
1111 func write( path: Path , override: Bool ) throws
1212
1313 /// Writes the object that conforms the protocol.
1414 ///
1515 /// - Parameter pathString: The path string to write to
16- /// - Parameter override: True if the content should be overriden if it already exists.
16+ /// - Parameter override: True if the content should be overridden if it already exists.
1717 /// - Throws: writing error if something goes wrong.
1818 func write( pathString: String , override: Bool ) throws
1919}
You can’t perform that action at this time.
0 commit comments