blob: 69c143288a2059bbd700464bd6bf2e8a85fc04f1 [file] [log] [blame]
/// This function does stuff
///
/// - parameter first: The first parameter
///
/// - returns: The return value
func foo(first: Int) -> String {
return ""
}
let x = "Changing this string should only affect this line"
/// This function does other stuff
///
/// - parameter first: The first parameter
///
/// - returns: The return value
func bar(first: Int) -> String {
return ""
}