diff --git a/src/git/zcl_abapgit_git_commit.clas.abap b/src/git/zcl_abapgit_git_commit.clas.abap index 7afd0aff2..34f5b5fdd 100644 --- a/src/git/zcl_abapgit_git_commit.clas.abap +++ b/src/git/zcl_abapgit_git_commit.clas.abap @@ -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 diff --git a/src/ui/core/zif_abapgit_html.intf.abap b/src/ui/core/zif_abapgit_html.intf.abap index 7df979a28..4393b537d 100644 --- a/src/ui/core/zif_abapgit_html.intf.abap +++ b/src/ui/core/zif_abapgit_html.intf.abap @@ -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 diff --git a/src/ui/pages/sett/zcl_abapgit_gui_page_sett_glob.clas.abap b/src/ui/pages/sett/zcl_abapgit_gui_page_sett_glob.clas.abap index dab9cff0e..130ce0555 100644 --- a/src/ui/pages/sett/zcl_abapgit_gui_page_sett_glob.clas.abap +++ b/src/ui/pages/sett/zcl_abapgit_gui_page_sett_glob.clas.abap @@ -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