From 52b3be3bef64286b96b518fa854d02e551d4d24d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Thu, 3 Sep 2026 17:36:37 -0400 Subject: [PATCH] docs: fix typos in comments, log messages and documentation --- README.md | 4 ++-- .../SamplesCollection/export-folder-all-with-aliases.ps1 | 2 +- .../export-folder-all-with-ds-name-in-loadfile.ps1 | 2 +- .../SamplesCollection/export-folder-all.ps1 | 2 +- .../SamplesCollection/export-folder-full-text.ps1 | 2 +- .../SamplesCollection/export-folder-images.ps1 | 2 +- .../SamplesCollection/export-folder-native-files.ps1 | 2 +- .../SamplesCollection/export-folder-pdf.ps1 | 2 +- .../SamplesCollection/job-cancel.ps1 | 2 +- .../SamplesCollection/job-get-settings.ps1 | 2 +- .../SamplesCollection/job-get.ps1 | 2 +- .../SamplesCollection/job-list.ps1 | 2 +- .../SamplesCollection/job-start-all-runnable-jobs.ps1 | 2 +- .../SampleCollection/Export_Folder_All.cs | 6 +++--- .../SampleCollection/Export_Folder_All_With_Aliases.cs | 6 +++--- .../Export_Folder_All_With_DataSource_Name_In_Loadfile.cs | 8 ++++---- .../SampleCollection/Export_Folder_FullText.cs | 6 +++--- .../SampleCollection/Export_Folder_Images.cs | 6 +++--- .../SampleCollection/Export_Folder_NativeFiles.cs | 6 +++--- .../SampleCollection/Export_Folder_PDF.cs | 6 +++--- .../SampleCollection/Export_Production_All.cs | 4 ++-- .../SampleCollection/Export_Production_FullText.cs | 4 ++-- .../SampleCollection/Export_Production_Images.cs | 4 ++-- .../SampleCollection/Export_Production_NativeFiles.cs | 4 ++-- .../SampleCollection/Export_Production_PDF.cs | 4 ++-- .../SampleCollection/Export_RDO.cs | 6 +++--- .../SampleCollection/Export_SavedSearch_All.cs | 4 ++-- .../SampleCollection/Export_SavedSearch_FullText.cs | 4 ++-- .../SampleCollection/Export_SavedSearch_Images.cs | 4 ++-- .../SampleCollection/Export_SavedSearch_NativeFiles.cs | 4 ++-- .../SampleCollection/Export_SavedSearch_PDF.cs | 4 ++-- .../SampleCollection/Job_Cancel.cs | 2 +- .../SampleCollection/Job_GetSettings.cs | 2 +- .../SampleCollection/Job_List.cs | 2 +- .../SampleCollection/Job_StartAllRunnableJobs.cs | 6 +++--- 35 files changed, 65 insertions(+), 65 deletions(-) diff --git a/README.md b/README.md index ec68087..eed1e0b 100644 --- a/README.md +++ b/README.md @@ -609,7 +609,7 @@ var validationResult = await jobManager.CreateAsync( // Start export job var startResponse = await jobManager.StartAsync(workspaceID, jobID); -// Check for errors that occured during job start +// Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); @@ -828,7 +828,7 @@ To run a sample code: # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. - # Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. + # Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. # ExportSourceType: ExportFolder or ExportFolderWithSubfolders [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all-with-aliases.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all-with-aliases.ps1 index 203286e..fe2f8ed 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all-with-aliases.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all-with-aliases.ps1 @@ -7,7 +7,7 @@ # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. # ExportSourceType: ExportFolder or ExportFolderWithSubfolders [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all-with-ds-name-in-loadfile.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all-with-ds-name-in-loadfile.ps1 index 9ed1fb7..3b4e61c 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all-with-ds-name-in-loadfile.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all-with-ds-name-in-loadfile.ps1 @@ -7,7 +7,7 @@ # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. # ExportSourceType: ExportFolder or ExportFolderWithSubfolders [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all.ps1 index 21e420c..7fc7156 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-all.ps1 @@ -7,7 +7,7 @@ # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. # ExportSourceType: ExportFolder or ExportFolderWithSubfolders [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-full-text.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-full-text.ps1 index 097321d..6a9e2e9 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-full-text.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-full-text.ps1 @@ -7,7 +7,7 @@ # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. # ExportSourceType: ExportFolder or ExportFolderWithSubfolders [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-images.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-images.ps1 index 8692914..93f3590 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-images.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-images.ps1 @@ -7,7 +7,7 @@ # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. # ExportSourceType: ExportFolder or ExportFolderWithSubfolders [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-native-files.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-native-files.ps1 index 5b01ae8..d1c6024 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-native-files.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-native-files.ps1 @@ -7,7 +7,7 @@ # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. # ExportSourceType: ExportFolder or ExportFolderWithSubfolders [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-pdf.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-pdf.ps1 index 0d1ca28..1a816f7 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-pdf.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/export-folder-pdf.ps1 @@ -7,7 +7,7 @@ # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. # ExportSourceType: ExportFolder or ExportFolderWithSubfolders [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/job-cancel.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/job-cancel.ps1 index 4adc525..8839391 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/job-cancel.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/job-cancel.ps1 @@ -14,7 +14,7 @@ $jobId = New-Guid # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/job-get-settings.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/job-get-settings.ps1 index c31955f..34ab61c 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/job-get-settings.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/job-get-settings.ps1 @@ -14,7 +14,7 @@ $jobId = New-Guid # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/job-get.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/job-get.ps1 index 700031d..86feaa6 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/job-get.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/job-get.ps1 @@ -14,7 +14,7 @@ $jobId = New-Guid # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/job-list.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/job-list.ps1 index 6719ed9..160ecc8 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/job-list.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/job-list.ps1 @@ -13,7 +13,7 @@ $jobId = New-Guid # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.Powershell/SamplesCollection/job-start-all-runnable-jobs.ps1 b/Relativity.Export.Samples.Powershell/SamplesCollection/job-start-all-runnable-jobs.ps1 index b939fef..8172cc4 100644 --- a/Relativity.Export.Samples.Powershell/SamplesCollection/job-start-all-runnable-jobs.ps1 +++ b/Relativity.Export.Samples.Powershell/SamplesCollection/job-start-all-runnable-jobs.ps1 @@ -11,7 +11,7 @@ # Export settings parameters # Your view ID: view will provide us with available data to export, requires folder to be visible there. -# Your folder ID: our targetted folder. If you want to export from the workspace root, the ID is different from the workspace ID. +# Your folder ID: our targeted folder. If you want to export from the workspace root, the ID is different from the workspace ID. [int]$viewId = 1003684 [int]$folderID = 1003697 diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All.cs index fb36a0c..bc779f4 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All.cs @@ -18,7 +18,7 @@ public async Task Export_FromFolder_All() int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; @@ -166,10 +166,10 @@ public async Task Export_FromFolder_All() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All_With_Aliases.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All_With_Aliases.cs index 568165b..4eb999c 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All_With_Aliases.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All_With_Aliases.cs @@ -18,7 +18,7 @@ public async Task Export_FromFolder_All_With_Aliases() int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; @@ -176,10 +176,10 @@ public async Task Export_FromFolder_All_With_Aliases() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All_With_DataSource_Name_In_Loadfile.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All_With_DataSource_Name_In_Loadfile.cs index 8c81b8c..e4768fd 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All_With_DataSource_Name_In_Loadfile.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_All_With_DataSource_Name_In_Loadfile.cs @@ -6,7 +6,7 @@ namespace Relativity.Export.Samples.RelConsole.SampleCollection; public partial class BaseExportService { - [SampleMetadata(nameof(Export_FromFolder_All_With_DataSource_Name_In_Loadfile), "Exports native, fulltext, images and PDF files from folder. Exported laodfiles names contians DataSource name and date.")] + [SampleMetadata(nameof(Export_FromFolder_All_With_DataSource_Name_In_Loadfile), "Exports native, fulltext, images and PDF files from folder. Exported loadfile names contain DataSource name and date.")] public async Task Export_FromFolder_All_With_DataSource_Name_In_Loadfile() { // Your workspace ID. @@ -18,7 +18,7 @@ public async Task Export_FromFolder_All_With_DataSource_Name_In_Loadfile() int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; @@ -167,10 +167,10 @@ public async Task Export_FromFolder_All_With_DataSource_Name_In_Loadfile() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_FullText.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_FullText.cs index 1a6c46b..561104d 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_FullText.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_FullText.cs @@ -18,7 +18,7 @@ public async Task Export_FromFolder_FullText() int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; @@ -156,10 +156,10 @@ public async Task Export_FromFolder_FullText() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_Images.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_Images.cs index 585fef8..af2f4db 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_Images.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_Images.cs @@ -18,7 +18,7 @@ public async Task Export_FromFolder_Images() int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; @@ -150,10 +150,10 @@ public async Task Export_FromFolder_Images() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_NativeFiles.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_NativeFiles.cs index 86f16ed..5da4b49 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_NativeFiles.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_NativeFiles.cs @@ -18,7 +18,7 @@ public async Task Export_FromFolder_NativeFiles() int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; @@ -145,10 +145,10 @@ public async Task Export_FromFolder_NativeFiles() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_PDF.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_PDF.cs index 38302d0..8632bf4 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_PDF.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Folder_PDF.cs @@ -18,7 +18,7 @@ public async Task Export_FromFolder_PDF() int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; @@ -144,10 +144,10 @@ public async Task Export_FromFolder_PDF() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_All.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_All.cs index d65f255..a3f4814 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_All.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_All.cs @@ -170,10 +170,10 @@ public async Task Export_FromProduction_All() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_FullText.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_FullText.cs index 5aaed44..fa3ead3 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_FullText.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_FullText.cs @@ -150,10 +150,10 @@ public async Task Export_FromProduction_Fulltext() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_Images.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_Images.cs index e0c97a4..d185045 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_Images.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_Images.cs @@ -140,10 +140,10 @@ public async Task Export_FromProduction_Images() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_NativeFiles.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_NativeFiles.cs index bc87c6e..10ecc45 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_NativeFiles.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_NativeFiles.cs @@ -138,10 +138,10 @@ public async Task Export_FromProduction_NativeFiles() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_PDF.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_PDF.cs index 5b93151..9d5668e 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_PDF.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_Production_PDF.cs @@ -137,10 +137,10 @@ public async Task Export_FromProduction_PDF() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_RDO.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_RDO.cs index 4f1a5bd..309c052 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_RDO.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_RDO.cs @@ -15,7 +15,7 @@ public async Task Export_RDO() int workspaceID = 6648897; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. // int viewID = 1042316; int viewID = 1036791; // Dev view @@ -162,10 +162,10 @@ public async Task Export_RDO() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_All.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_All.cs index 17a93c7..e7bea17 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_All.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_All.cs @@ -136,10 +136,10 @@ public async Task Export_FromSavedSearch_All() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_FullText.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_FullText.cs index 347230e..538fb66 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_FullText.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_FullText.cs @@ -154,10 +154,10 @@ public async Task Export_FromSavedSearch_FullText() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_Images.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_Images.cs index 560ec53..51e3217 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_Images.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_Images.cs @@ -120,10 +120,10 @@ public async Task Export_FromSavedSearch_Images() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_NativeFiles.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_NativeFiles.cs index 402a021..ceec155 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_NativeFiles.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_NativeFiles.cs @@ -143,10 +143,10 @@ public async Task Export_FromSavedSearch_NativeFiles() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_PDF.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_PDF.cs index 62abaae..91d97ad 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_PDF.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Export_SavedSearch_PDF.cs @@ -119,10 +119,10 @@ public async Task Export_FromSavedSearch_PDF() _logger.LogInformation("Job created successfully"); // Start export job - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}"); diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Job_Cancel.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Job_Cancel.cs index 81243b6..db0b50c 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Job_Cancel.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Job_Cancel.cs @@ -50,7 +50,7 @@ private async Task ListSample_CreateJobAsync(Relativity.Export.V1.IExportJobMana int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Job_GetSettings.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Job_GetSettings.cs index d40014b..a5013ea 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Job_GetSettings.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Job_GetSettings.cs @@ -38,7 +38,7 @@ private async Task GetSettingsSample_CreateJobAsync(Relativity.Export.V1.IExport int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Job_List.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Job_List.cs index c5dc4f2..d8fbef2 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Job_List.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Job_List.cs @@ -64,7 +64,7 @@ private async Task ListSample_CreateJobAsync(Relativity.Export.V1.IExportJobMana int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; diff --git a/Relativity.Export.Samples.RelConsole/SampleCollection/Job_StartAllRunnableJobs.cs b/Relativity.Export.Samples.RelConsole/SampleCollection/Job_StartAllRunnableJobs.cs index 93c45e5..463eaf4 100644 --- a/Relativity.Export.Samples.RelConsole/SampleCollection/Job_StartAllRunnableJobs.cs +++ b/Relativity.Export.Samples.RelConsole/SampleCollection/Job_StartAllRunnableJobs.cs @@ -73,7 +73,7 @@ private async Task StartSample_CreateJobAsync(Relativity.Export.V1.IExportJobMan int viewID = 1042326; // Your Folder ID. - // Our targetted folder. If you want to export from the workspace root, + // Our targeted folder. If you want to export from the workspace root, // the ID is different from the workspace ID. int folderID = 1003697; @@ -243,10 +243,10 @@ private async Task> StartSample_StartMultipleJobsAsync(R private async Task StartSample_RunJobAsync(Relativity.Export.V1.IExportJobManager jobManager, int workspaceID, Guid jobID) { // Start export job via job manager - _logger.LogInformation($"Stating job with <{jobID}> ID"); + _logger.LogInformation($"Starting job with <{jobID}> ID"); var startResponse = await jobManager.StartAsync(workspaceID, jobID); - // Check for errors that occured during job start + // Check for errors that occurred during job start if (!string.IsNullOrEmpty(startResponse.ErrorMessage)) { _logger.LogError($"<{startResponse.ErrorCode}> {startResponse.ErrorMessage}");