Commit dbebceac authored by Simon Spannagel's avatar Simon Spannagel
Browse files

Fix Spelling Errors

parent 50c3a0f0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -5,6 +5,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
@@ -88,7 +88,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 {
@@ -114,7 +114,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
@@ -71,7 +71,7 @@ namespace allpix {

        /**
         * @brief Helper method to determine if this detector model is of a given type
         * The template parameter needs to be specified specifcally, i.e.
         * The template parameter needs to be specified specifically, i.e.
         *     if(model->is<PixelDetectorModel>()) { }
         * @return Boolean indication whether this model is of the given type or not
         */
+1 −1
Original line number Diff line number Diff line
@@ -54,7 +54,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.
Loading