1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-10-28 04:49:43 +01:00

Merge branch 'ak/typofix-2.46-maint'

Typofixes.

* ak/typofix-2.46-maint:
  perl: fix a typo
  mergetool: fix a typo
  reftable: fix a typo
  trace2: fix typos
This commit is contained in:
Junio C Hamano 2024-10-04 14:21:40 -07:00
commit 4861bbf85a
5 changed files with 5 additions and 5 deletions

View file

@ -411,7 +411,7 @@ merge_cmd () {
-f "$FINAL_CMD" '"$LOCAL"' '"$BASE"' '"$REMOTE"' '"$MERGED"'
else
# If there is no BASE (example: a merge conflict in a new file
# with the same name created in both braches which didn't exist
# with the same name created in both branches which didn't exist
# before), close all BASE windows using vim's "quit" command
FINAL_CMD=$(echo "$FINAL_CMD" | \

View file

@ -111,7 +111,7 @@ =head2 __n($$$)
=head2 N__($)
No-operation that only returns its argument. Use this if you want xgettext to
extract the text to the pot template but do not want to trigger retrival of the
extract the text to the pot template but do not want to trigger retrieval of the
translation at run time.
=head1 AUTHOR

View file

@ -30,7 +30,7 @@ struct reftable_reader_offsets {
/* The state for reading a reftable file. */
struct reftable_reader {
/* for convience, associate a name with the instance. */
/* for convenience, associate a name with the instance. */
char *name;
struct reftable_block_source source;

View file

@ -4,7 +4,7 @@
#include "trace2/tr2_ctr.h"
/*
* A global counter block to aggregrate values from the partial sums
* A global counter block to aggregate values from the partial sums
* from each thread.
*/
static struct tr2_counter_block final_counter_block; /* access under tr2tls_mutex */

View file

@ -11,7 +11,7 @@
*/
/*
* Arbitry limit for thread names for column alignment.
* Arbitrary limit for thread names for column alignment.
*/
#define TR2_MAX_THREAD_NAME (24)