From ee571ecb16165ccc8f8eac350c3eb61978e9a5c4 Mon Sep 17 00:00:00 2001 From: danrega <16720986+danrega@users.noreply.github.com> Date: Mon, 17 Jul 2023 13:26:36 +0200 Subject: [PATCH] Correct typo --- src/zcl_demo_abap_dtype_dobj.clas.abap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/zcl_demo_abap_dtype_dobj.clas.abap b/src/zcl_demo_abap_dtype_dobj.clas.abap index a888746..b330e7d 100644 --- a/src/zcl_demo_abap_dtype_dobj.clas.abap +++ b/src/zcl_demo_abap_dtype_dobj.clas.abap @@ -332,7 +332,7 @@ CLASS zcl_demo_abap_dtype_dobj IMPLEMENTATION. "Reference table types TYPES tr_tab_ref_i TYPE TABLE OF REF TO i. DATA itab_str TYPE TABLE OF string. - TYPES tr_like_table_ref LIKE TABLE OF ref TO itab_str. + TYPES tr_like_table_ref LIKE TABLE OF REF TO itab_str. output->display( `No output for this section. Check out the code, ` && `for example, when running the class in the debugger after setting ` @@ -1795,7 +1795,7 @@ CLASS zcl_demo_abap_dtype_dobj IMPLEMENTATION. output->display( `23) Enumerated Types and Objects` ). - "Examples for enurmerated types and objects are contained in + "Examples for enumerated types and objects are contained in "separate methods. Check the comments there. "Note that the output that is created in the methods is combined "in a string (table).