about summary refs log tree commit diff
path: root/library/panic_abort/src
diff options
context:
space:
mode:
authorAli Malik <mikli@amazon.com>2021-07-23 19:14:28 -0400
committerAli Malik <mikli@amazon.com>2021-07-29 01:15:20 -0400
commite43254aad1ea5758078ace51341f31071e1e61a8 (patch)
tree2dff253d1ded27a831d8ad773d5b0df8ae72666b /library/panic_abort/src
parent85237886df31ba237acd3b7912336704026813f5 (diff)
downloadrust-e43254aad1ea5758078ace51341f31071e1e61a8.tar.gz
rust-e43254aad1ea5758078ace51341f31071e1e61a8.zip
Fix may not to appropriate might not or must not
Diffstat (limited to 'library/panic_abort/src')
-rw-r--r--library/panic_abort/src/android.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/panic_abort/src/android.rs b/library/panic_abort/src/android.rs
index 34d77502eab..18bb932f10e 100644
--- a/library/panic_abort/src/android.rs
+++ b/library/panic_abort/src/android.rs
@@ -7,7 +7,7 @@ const ANDROID_SET_ABORT_MESSAGE: &[u8] = b"android_set_abort_message\0";
 type SetAbortMessageType = unsafe extern "C" fn(*const libc::c_char) -> ();
 
 // Forward the abort message to libc's android_set_abort_message. We try our best to populate the
-// message but as this function may already be called as part of a failed allocation, it may not be
+// message but as this function may already be called as part of a failed allocation, it might not be
 // possible to do so.
 //
 // Some methods of core are on purpose avoided (such as try_reserve) as these rely on the correct