mirror of
https://github.com/abapGit/abapGit.git
synced 2025-04-30 20:03:20 +08:00
Fix typos within the code base (#6864)
This commit is contained in:
parent
105a202f8c
commit
57ea8ba7fc
|
@ -81,7 +81,7 @@ CLASS zcl_abapgit_git_commit IMPLEMENTATION.
|
||||||
|
|
||||||
METHOD extract_author_data.
|
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
|
FIND REGEX zif_abapgit_definitions=>c_author_regex IN iv_author
|
||||||
SUBMATCHES
|
SUBMATCHES
|
||||||
ev_author
|
ev_author
|
||||||
|
|
|
@ -18,7 +18,7 @@ INTERFACE zif_abapgit_html PUBLIC.
|
||||||
TYPES:
|
TYPES:
|
||||||
ty_table_of TYPE STANDARD TABLE OF REF TO zif_abapgit_html WITH DEFAULT KEY.
|
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
|
METHODS set_title
|
||||||
IMPORTING
|
IMPORTING
|
||||||
|
|
|
@ -144,7 +144,7 @@ CLASS zcl_abapgit_gui_page_sett_glob IMPLEMENTATION.
|
||||||
iv_name = c_id-commitmsg_comment_length
|
iv_name = c_id-commitmsg_comment_length
|
||||||
iv_required = abap_true
|
iv_required = abap_true
|
||||||
iv_label = 'Maximum Length of Comment'
|
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
|
iv_min = zcl_abapgit_settings=>c_commitmsg_comment_length_dft
|
||||||
)->text(
|
)->text(
|
||||||
iv_name = c_id-commitmsg_comment_deflt
|
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_name = c_id-commitmsg_body_size
|
||||||
iv_required = abap_true
|
iv_required = abap_true
|
||||||
iv_label = 'Maximum Line Size of Body'
|
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
|
iv_min = zcl_abapgit_settings=>c_commitmsg_body_size_dft
|
||||||
)->checkbox(
|
)->checkbox(
|
||||||
iv_name = c_id-commitmsg_hide_author
|
iv_name = c_id-commitmsg_hide_author
|
||||||
|
|
Loading…
Reference in New Issue
Block a user