Skip to content

Commit c8b0e72

Browse files
committed
Formatting
1 parent e278aee commit c8b0e72

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/process.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,19 +227,19 @@ namespace proc {
227227
* @brief Parse the string and replace any "$(...)" patterns with a value from env.
228228
* @param env Environment to be used as a source for replacement.
229229
* @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.
231231
* @warning This function throws if the `val_raw` is ill-formed.
232232
*/
233233
std::string parse_env_val(const boost::process::v1::native_environment &env, std::string_view val_raw);
234234

235235
/**
236236
* @brief Validate the image path.
237237
* @param app_image_path File path to validate.
238-
*
238+
*
239239
* Requirements:
240240
* - images must be of `.png` file ending
241241
* - image file must exist (can be relative to the `assets` directory).
242-
*
242+
*
243243
* @returns Validated image path on success, default image path on failure.
244244
*/
245245
std::string validate_app_image_path(const std::string &app_image_path);
@@ -265,7 +265,7 @@ namespace proc {
265265
* @param app_index App index in the app list.
266266
* @return Tuple of id calculated without index (for use if no collision) and one with.
267267
*/
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);
269269

270270
/**
271271
* @brief Parse the app list file.

0 commit comments

Comments
 (0)