Skip to content

Commit 2152718

Browse files
committed
Correct error message text
We've already handled the request conversion elsewhere!
1 parent f5ff73c commit 2152718

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

ui/src/main.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -233,37 +233,37 @@ enum Error {
233233
source: orchestrator::coordinator::Error,
234234
},
235235

236-
#[snafu(display("Unable to convert the evaluate request"))]
236+
#[snafu(display("Unable to process the evaluate request"))]
237237
Evaluate {
238238
source: orchestrator::coordinator::ExecuteError,
239239
},
240240

241-
#[snafu(display("Unable to convert the compile request"))]
241+
#[snafu(display("Unable to process the compile request"))]
242242
Compile {
243243
source: orchestrator::coordinator::CompileError,
244244
},
245245

246-
#[snafu(display("Unable to convert the execute request"))]
246+
#[snafu(display("Unable to process the execute request"))]
247247
Execute {
248248
source: orchestrator::coordinator::ExecuteError,
249249
},
250250

251-
#[snafu(display("Unable to convert the format request"))]
251+
#[snafu(display("Unable to process the format request"))]
252252
Format {
253253
source: orchestrator::coordinator::FormatError,
254254
},
255255

256-
#[snafu(display("Unable to convert the Clippy request"))]
256+
#[snafu(display("Unable to process the Clippy request"))]
257257
Clippy {
258258
source: orchestrator::coordinator::ClippyError,
259259
},
260260

261-
#[snafu(display("Unable to convert the Miri request"))]
261+
#[snafu(display("Unable to process the Miri request"))]
262262
Miri {
263263
source: orchestrator::coordinator::MiriError,
264264
},
265265

266-
#[snafu(display("Unable to convert the macro expansion request"))]
266+
#[snafu(display("Unable to process the macro expansion request"))]
267267
MacroExpansion {
268268
source: orchestrator::coordinator::MacroExpansionError,
269269
},

0 commit comments

Comments
 (0)