Skip to content

Commit 37e313c

Browse files
Update greedy_algorithms/job_sequencing_algorithm.cpp
Co-authored-by: realstealthninja <[email protected]>
1 parent c26c7c1 commit 37e313c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

greedy_algorithms/job_sequencing_algorithm.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ namespace greedy_algorithms {
8383
* @brief A structure to represent a job
8484
*/
8585
struct Job {
86-
char id; // Job Id
87-
int dead; // Deadline of job
88-
int profit; // Profit earned if job is completed before deadline
86+
char id; ///< Job Id
87+
int dead; ///< Deadline of job
88+
int profit; ///< Profit earned if job is completed before deadline
8989
};
9090

9191
// Custom sorting helper struct which is used for sorting

0 commit comments

Comments
 (0)