We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 533ddee commit de932f0Copy full SHA for de932f0
ocaml-lsp-server/src/definition_query.ml
@@ -4,10 +4,7 @@ open Fiber.O
4
let location_of_merlin_loc uri : _ -> (_, string) result = function
5
| `At_origin -> Error "Already at definition point"
6
| `Builtin s ->
7
- Error
8
- (sprintf
9
- "%S is a builtin, and it is therefore impossible to jump to its definition"
10
- s)
+ Error (sprintf "%S is a builtin, it is not possible to jump to its definition" s)
11
| `File_not_found s -> Error (sprintf "File_not_found: %s" s)
12
| `Invalid_context -> Error "Not a valid identifier"
13
| `Not_found (ident, where) ->
0 commit comments