File: spelling.patch

package info (click to toggle)
genomicsdb 1.4.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 24,788 kB
  • sloc: cpp: 78,988; ansic: 58,119; java: 8,531; python: 2,270; sh: 1,850; perl: 1,621; makefile: 490; xml: 455
file content (34 lines) | stat: -rw-r--r-- 1,364 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Description: fixing a tiny spelling error
Author: Pierre Gruet <pgt@debian.org>
Forwarded: https://github.com/OmicsDataAutomation/TileDB/issues/127
Last-Update: 2022-07-26

--- a/genomicsdb-tiledb/core/src/storage_manager/storage_manager_config.cc
+++ b/genomicsdb-tiledb/core/src/storage_manager/storage_manager_config.cc
@@ -101,7 +101,7 @@
          fs_ = new AzureBlob(home_);
        } catch(std::system_error& ex) {
          PRINT_ERROR(ex.what());
-	 tiledb_smc_errmsg = "Azure Storage Blob intialization failed for home=" + home_;
+	 tiledb_smc_errmsg = "Azure Storage Blob initialization failed for home=" + home_;
 	 return TILEDB_SMC_ERR;
        }
      } else if (is_s3_storage_path(home_)) {
@@ -109,7 +109,7 @@
           fs_ = new S3(home_);
        } catch(std::system_error& ex) {
          PRINT_ERROR(ex.what());
-	 tiledb_smc_errmsg = "S3 Storage intialization failed for home=" + home_;
+	 tiledb_smc_errmsg = "S3 Storage initialization failed for home=" + home_;
 	 return TILEDB_SMC_ERR;
        }
      } else */if (is_supported_cloud_path(home_)) {
@@ -121,7 +121,7 @@
 #endif
        } catch(std::system_error& ex) {
 	 PRINT_ERROR(ex.what());
-	 tiledb_smc_errmsg = "HDFS intialization failed for home=" + home_;
+	 tiledb_smc_errmsg = "HDFS initialization failed for home=" + home_;
 	 return TILEDB_SMC_ERR;
        }
      } else {