Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Core/Sources/Service/Helpers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ extension NSError {
case let .requestDispatchFailed(error):
message = "Request dispatch failed: \(error.localizedDescription)."
case let .clientDataUnavailable(error):
message = "Client data unavalable: \(error.localizedDescription)."
message = "Client data unavailable: \(error.localizedDescription)."
case .serverUnavailable:
message = "Server unavailable, please make sure you have installed Node."
case .missingExpectedParameter:
Expand Down
2 changes: 1 addition & 1 deletion Core/Sources/SuggestionInjector/SuggestionInjector.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ let suggestionEnd = "*///======== End of Copilot Suggestion"

// NOTE: Every lines from Xcode Extension has a line break at its end, even the last line.
// NOTE: Copilot's completion always start at character 0, no matter where the cursor is.
// NOTE: range.end and postion in Copilot's completion are useless, don't bother looking at them.
// NOTE: range.end and position in Copilot's completion are useless, don't bother looking at them.

public struct SuggestionInjector {
public init() {}
Expand Down