docs/GitHubSyncApi.md in phrase-2.8.0 vs docs/GitHubSyncApi.md in phrase-2.8.1

- old
+ new

@@ -2,22 +2,22 @@ All URIs are relative to *https://api.phrase.com/v2* Method | HTTP request | Description ------------- | ------------- | ------------- -[**github_sync_export**](GitHubSyncApi.md#github_sync_export) | **POST** /github_syncs/export | Export from Phrase to GitHub -[**github_sync_import**](GitHubSyncApi.md#github_sync_import) | **POST** /github_syncs/import | Import to Phrase from GitHub +[**github_sync_export**](GitHubSyncApi.md#github_sync_export) | **POST** /github_syncs/export | Export from Phrase Strings to GitHub +[**github_sync_import**](GitHubSyncApi.md#github_sync_import) | **POST** /github_syncs/import | Import to Phrase Strings from GitHub ## github_sync_export > github_sync_export(github_sync_export_parameters, opts) -Export from Phrase to GitHub +Export from Phrase Strings to GitHub -Export translations from Phrase to GitHub according to the .phraseapp.yml file within the GitHub repository. +Export translations from Phrase Strings to GitHub according to the .phraseapp.yml file within the GitHub repository. ### Example ```ruby # load the gem @@ -38,11 +38,11 @@ opts = { x_phrase_app_otp: 'x_phrase_app_otp_example' # String | Two-Factor-Authentication token (optional) } begin - #Export from Phrase to GitHub + #Export from Phrase Strings to GitHub api_instance.github_sync_export(github_sync_export_parameters, opts) rescue Phrase::ApiError => e puts "Exception when calling GitHubSyncApi->github_sync_export: #{e}" end ``` @@ -71,13 +71,13 @@ ## github_sync_import > github_sync_import(github_sync_import_parameters, opts) -Import to Phrase from GitHub +Import to Phrase Strings from GitHub -Import files to Phrase from your connected GitHub repository. +Import files to Phrase Strings from your connected GitHub repository. ### Example ```ruby # load the gem @@ -98,10 +98,10 @@ opts = { x_phrase_app_otp: 'x_phrase_app_otp_example' # String | Two-Factor-Authentication token (optional) } begin - #Import to Phrase from GitHub + #Import to Phrase Strings from GitHub api_instance.github_sync_import(github_sync_import_parameters, opts) rescue Phrase::ApiError => e puts "Exception when calling GitHubSyncApi->github_sync_import: #{e}" end ```