Commit 7e4ab4ad authored by Simon Spannagel's avatar Simon Spannagel
Browse files

Fix Spelling Errors

(cherry picked from commit dbebceac)
parent 559652d4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@
# Put one word per line and sort alphabetically.
asai
hist
globaly
localy
skelton
synopsys
te
+2 −2
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ std::string Configuration::getText(const std::string& key, const std::string& de
/**
 * @throws InvalidValueError If the path did not exists while the check_exists parameter is given
 *
 * For a relative path the absolute path of the configuration file is preprended. Absolute paths are not changed.
 * For a relative path the absolute path of the configuration file is prepended. Absolute paths are not changed.
 */
// TODO [doc] Document canonicalizing behaviour
std::filesystem::path Configuration::getPath(const std::string& key, bool check_exists) const {
@@ -112,7 +112,7 @@ Configuration::getPathWithExtension(const std::string& key, const std::string& e
/**
 * @throws InvalidValueError If the path did not exists while the check_exists parameter is given
 *
 * For all relative paths the absolute path of the configuration file is preprended. Absolute paths are not changed.
 * For all relative paths the absolute path of the configuration file is prepended. Absolute paths are not changed.
 */
// TODO [doc] Document canonicalizing behaviour
std::vector<std::filesystem::path> Configuration::getPathArray(const std::string& key, bool check_exists) const {
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ namespace allpix {

    /**
     * @ingroup Exceptions
     * @brief Errors related to problems ocurring at runtime
     * @brief Errors related to problems occurring at runtime
     *
     * Problems that could never have been detected at compile time
     */
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ public:
    //
    // binning myBinning = { 1.0 2.0 3.0 8.0}
    //
    // with monotonically increaing values describing
    // with monotonically increasing values describing
    // the bin edges. The last value is the upper limit
    // of the last bin, so there is one more entry required
    // than the # of bins.
+1 −1
Original line number Diff line number Diff line
@@ -51,7 +51,7 @@ namespace allpix {

        /**
         * @brief Method to build the volumes and add it to the world. Overrides the parent class method to be able to handle
         * complex structurs with may solids from GDML files
         * complex structures with may solids from GDML files
         * @param world_log Pointer to the world volume
         */
        void buildVolume(const std::shared_ptr<G4LogicalVolume>& world_log) override {
Loading