Fix typos within the code base (#6864)

This commit is contained in:
Francisco Milán 2024-03-17 11:32:49 -06:00 committed by GitHub
parent 105a202f8c
commit 57ea8ba7fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -81,7 +81,7 @@ CLASS zcl_abapgit_git_commit IMPLEMENTATION.
METHOD extract_author_data.
" unix time stamps are in same time zone, so ignore the zone
" Unix time stamps are in same time zone, so ignore the zone
FIND REGEX zif_abapgit_definitions=>c_author_regex IN iv_author
SUBMATCHES
ev_author

View File

@ -18,7 +18,7 @@ INTERFACE zif_abapgit_html PUBLIC.
TYPES:
ty_table_of TYPE STANDARD TABLE OF REF TO zif_abapgit_html WITH DEFAULT KEY.
DATA mv_chunk_title TYPE string READ-ONLY. " Primarily for debug of posponed html parts
DATA mv_chunk_title TYPE string READ-ONLY. " Primarily for debug of postponed html parts
METHODS set_title
IMPORTING

View File

@ -144,7 +144,7 @@ CLASS zcl_abapgit_gui_page_sett_glob IMPLEMENTATION.
iv_name = c_id-commitmsg_comment_length
iv_required = abap_true
iv_label = 'Maximum Length of Comment'
iv_hint = |At least { zcl_abapgit_settings=>c_commitmsg_comment_length_dft } characters|
iv_hint = |At most { zcl_abapgit_settings=>c_commitmsg_comment_length_dft } characters|
iv_min = zcl_abapgit_settings=>c_commitmsg_comment_length_dft
)->text(
iv_name = c_id-commitmsg_comment_deflt
@ -154,7 +154,7 @@ CLASS zcl_abapgit_gui_page_sett_glob IMPLEMENTATION.
iv_name = c_id-commitmsg_body_size
iv_required = abap_true
iv_label = 'Maximum Line Size of Body'
iv_hint = |At least { zcl_abapgit_settings=>c_commitmsg_body_size_dft } characters|
iv_hint = |Wrap body message at { zcl_abapgit_settings=>c_commitmsg_body_size_dft } characters per line|
iv_min = zcl_abapgit_settings=>c_commitmsg_body_size_dft
)->checkbox(
iv_name = c_id-commitmsg_hide_author