Skip to content

Commit 432d73f

Browse files
authored
Fix Typos in Documentation Comments (#5794)
* Update logger.rs * Update actor.rs
1 parent c3c85d7 commit 432d73f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

quickwit/quickwit-actors/src/actor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ pub trait Actor: Send + Sized + 'static {
173173
/// This hook is called only once.
174174
///
175175
/// It is always called regardless of the reason why the actor exited.
176-
/// The exit status is passed as an argument to make it possible to act conditionnally
176+
/// The exit status is passed as an argument to make it possible to act conditionally
177177
/// upon it.
178178
/// For instance, it is often better to do as little work as possible on a killed actor.
179179
/// It can be done by checking the `exit_status` and performing an early-exit if it is

quickwit/quickwit-cli/src/logger.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ pub(super) mod jemalloc_profiled {
285285
ctx.format_fields(writer.by_ref(), event)?;
286286
writeln!(writer)?;
287287

288-
// Print a backtrace to help idenify the callsite
288+
// Print a backtrace to help identify the callsite
289289
backtrace::trace(|frame| {
290290
backtrace::resolve_frame(frame, |symbol| {
291291
if let Some(symbole_name) = symbol.name() {

0 commit comments

Comments
 (0)