Skip to content

Commit d0bd6d3

Browse files
authored
Change wording of dune notifications (#1930)
* change wording * add changelog
1 parent 517962e commit d0bd6d3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Unreleased
44

5+
- Reword DPM notification to inform users DPM is available and not selected. (#1930)
56
- Fix Windows path handling regression introduced in 1.32.1 by using
67
`Uri.fsPath` instead of `Uri.path` in workspace root detection, preventing
78
LSP start failures (`ENOENT -4058`). (#1929)

src/dune.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ let make root () =
117117
| Some version when Dune_version.is_valid version ->
118118
show_message
119119
`Info
120-
"Dune Package Management selected with dune from %s, version %s."
120+
"Dune Package Management is available with dune from %s, version %s."
121121
(Path.to_string binary)
122122
v;
123123
Some { bin; root }
@@ -142,7 +142,7 @@ let make root () =
142142
| Some version when Dune_version.is_valid version ->
143143
show_message
144144
`Info
145-
"Dune Package Management selected with dune from %s, version %s."
145+
"Dune Package Management is available with dune from %s, version %s."
146146
path
147147
v;
148148
Promise.return (Some { bin; root })

0 commit comments

Comments
 (0)