@@ -227,19 +227,19 @@ namespace proc {
227
227
* @brief Parse the string and replace any "$(...)" patterns with a value from env.
228
228
* @param env Environment to be used as a source for replacement.
229
229
* @param val_raw Raw string to be parsed.
230
- * @returns Strings with replacements made (if any) with values from env.
230
+ * @returns Strings with replacements made (if any) with values from env.
231
231
* @warning This function throws if the `val_raw` is ill-formed.
232
232
*/
233
233
std::string parse_env_val (const boost::process::v1::native_environment &env, std::string_view val_raw);
234
234
235
235
/* *
236
236
* @brief Validate the image path.
237
237
* @param app_image_path File path to validate.
238
- *
238
+ *
239
239
* Requirements:
240
240
* - images must be of `.png` file ending
241
241
* - image file must exist (can be relative to the `assets` directory).
242
- *
242
+ *
243
243
* @returns Validated image path on success, default image path on failure.
244
244
*/
245
245
std::string validate_app_image_path (const std::string &app_image_path);
@@ -265,7 +265,7 @@ namespace proc {
265
265
* @param app_index App index in the app list.
266
266
* @return Tuple of id calculated without index (for use if no collision) and one with.
267
267
*/
268
- std::tuple<std::string, std::string> calculate_app_id (const std::string &app_name, const std::string& app_image_path, int app_index);
268
+ std::tuple<std::string, std::string> calculate_app_id (const std::string &app_name, const std::string & app_image_path, int app_index);
269
269
270
270
/* *
271
271
* @brief Parse the app list file.
0 commit comments