[](https://github.com/neomutt/neomutt "Give us a Star")
[](https://twitter.com/NeoMutt_Org "Follow us on Twitter")
-[](#contributors "All of NeoMutt's Contributors")
+[](https://github.com/neomutt/neomutt/blob/master/AUTHORS.md "All of NeoMutt's Contributors")
[](https://github.com/neomutt/neomutt/releases/latest "Latest Release Notes")
[](https://github.com/neomutt/neomutt/blob/master/COPYRIGHT.md "Copyright Statement")
[](https://travis-ci.org/neomutt/neomutt "Latest Automatic Code Build")
for (int i = 0; i < num_accounts; i++)
{
entries[i].num = i + 1;
- /* note: we are transfering the account pointer to the entries
+ /* note: we are transferring the account pointer to the entries
* array, and freeing the accounts array below. the account
* will be freed in menu_free(). */
entries[i].account = accounts[i];
<para>
These variables also affect size display in a few other places, such
- as progress indicators and attachment delimeters in the pager.
+ as progress indicators and attachment delimiters in the pager.
</para>
</sect2>
</sect1>
normal encryption via your keyring, using key signing and the web
of trust to verify identities. With an understanding of these
limitations, Autocrypt still provides an easy way to minimize
- cleartext emails sent between common correspondants, without
+ cleartext emails sent between common correspondents, without
having to explicitly exchange keys. More information can be found
at <ulink url="https://autocrypt.org/">https://autocrypt.org/</ulink>.
</para>
case OP_EDITOR_BACKSPACE:
if (state->curpos == 0)
{
- // Pressing backspace when no text is in the command prompt shold exit the prompt
+ // Pressing backspace when no text is in the command prompt should exit the prompt
if (state->lastchar == 0)
goto bye;
// Pressing backspace with text in the command prompt should just beep
/**
* mutt_date_localtime_format - Format localtime
- * @param buf Buffer to store formated time
+ * @param buf Buffer to store formatted time
* @param buflen Buffer size
* @param format Format to apply
* @param t Time to format
}
/**
- * mutt_label_hash_remove - Rmove a message's labels from the Hash Table
+ * mutt_label_hash_remove - Remove a message's labels from the Hash Table
* @param m Mailbox
* @param e Email
*/
* @retval NULL If there are fewer parts
*
* Break up the complete string-representation of the version number S, which
- * is of the following struture: <major number>.<minor number>.<micro
+ * is of the following structure: <major number>.<minor number>.<micro
* number><patch level>. The major, minor and micro number components will be
* stored in *MAJOR, *MINOR and *MICRO. If MINOR or MICRO is NULL the version
* number is assumed to have just 1 or 2 parts respectively.
#if GPGME_VERSION_NUMBER >= 0x010900 /* gpgme >= 1.9.0 */
/**
- * have_gpg_version - Do we have a sufficent GPG version
+ * have_gpg_version - Do we have a sufficient GPG version
* @param version Minimum version
* @retval true If minimum version is available
*
/* Macro for dumping a block of memory.
*
- * Its inteded use is very similar to what TEST_MSG is for, but instead of
+ * Its intended use is very similar to what TEST_MSG is for, but instead of
* generating any printf-like message, this is for dumping raw block of a
* memory in a hexadecimal form:
*
{
if(test_timer__ == 1)
#ifdef CLOCK_MONOTONIC_RAW
- /* linux specific; not subject of NTP adjustements or adjtime() */
+ /* linux specific; not subject of NTP adjustments or adjtime() */
test_timer_id__ = CLOCK_MONOTONIC_RAW;
#else
test_timer_id__ = CLOCK_MONOTONIC;
static void
test_timer_print_diff__(void)
{
- printf("%.6lf secs",
+ printf("%.6lf secs",
test_timer_diff__(test_timer_start__, test_timer_end__));
}
#else
if(strncmp(badoptname, "--", 2) == 0) {
/* Strip any argument from the long option. */
- char* assignement = strchr(badoptname, '=');
- if(assignement != NULL) {
- size_t len = assignement - badoptname;
+ char* assignment = strchr(badoptname, '=');
+ if(assignment != NULL) {
+ size_t len = assignment - badoptname;
if(len > TEST_CMDLINE_AUXBUF_SIZE__)
len = TEST_CMDLINE_AUXBUF_SIZE__;
strncpy(auxbuf, badoptname, len);