Skip to content

Commit de932f0

Browse files
xvwvoodoos
andcommitted
Update ocaml-lsp-server/src/definition_query.ml
Co-authored-by: Ulysse <5031221+voodoos@users.noreply.github.com>
1 parent 533ddee commit de932f0

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

ocaml-lsp-server/src/definition_query.ml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ open Fiber.O
44
let location_of_merlin_loc uri : _ -> (_, string) result = function
55
| `At_origin -> Error "Already at definition point"
66
| `Builtin s ->
7-
Error
8-
(sprintf
9-
"%S is a builtin, and it is therefore impossible to jump to its definition"
10-
s)
7+
Error (sprintf "%S is a builtin, it is not possible to jump to its definition" s)
118
| `File_not_found s -> Error (sprintf "File_not_found: %s" s)
129
| `Invalid_context -> Error "Not a valid identifier"
1310
| `Not_found (ident, where) ->

0 commit comments

Comments
 (0)