Docs: Update API get_repo_from_package call (#5063)

This commit is contained in:
Marc Bernard 2021-10-26 19:52:49 -04:00 committed by GitHub
parent aa60faa299
commit 2a27d34c08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -77,7 +77,11 @@ DATA(ls_repo) = NEW zcl_abapgit_persist_factory=>get_repo( )->read( iv_key ).
Find the repository for a given SAP package:
```abap
DATA(lo_repo) = zcl_abapgit_repo_srv=>get_instance( )->get_repo_from_package( iv_package ).
zcl_abapgit_repo_srv=>get_instance( )->get_repo_from_package(
EXPORTING
iv_package = '$ABAPGIT'
IMPORTING
eo_repo = DATA(lo_repo) ).
```
### Delete ###