diff options
| author | Ali Malik <mikli@amazon.com> | 2021-07-23 19:14:28 -0400 |
|---|---|---|
| committer | Ali Malik <mikli@amazon.com> | 2021-07-29 01:15:20 -0400 |
| commit | e43254aad1ea5758078ace51341f31071e1e61a8 (patch) | |
| tree | 2dff253d1ded27a831d8ad773d5b0df8ae72666b /library/panic_abort/src | |
| parent | 85237886df31ba237acd3b7912336704026813f5 (diff) | |
| download | rust-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.rs | 2 |
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 |
