diff --git a/slurm/slurm.h.in b/slurm/slurm.h.in
index 78254a86426cb6b420e94bc10445174220252270..efc3755c34ed762536421bbeb93db3d93224a7b0 100644
--- a/slurm/slurm.h.in
+++ b/slurm/slurm.h.in
@@ -1167,7 +1167,7 @@ typedef struct job_info {
 	uint32_t exit_code;	/* exit code for job (status from wait call) */
 	char *features;		/* comma separated list of required features */
 	char *gres;		/* comma separated list of generic resources */
-	uint32_t group_id;	/* group job sumitted as */
+	uint32_t group_id;	/* group job submitted as */
 	uint32_t job_id;	/* job ID */
 	uint16_t job_state;	/* state of the job, see enum job_states */
 	char *licenses;		/* licenses required by the job */
diff --git a/src/slurmctld/slurmctld.h b/src/slurmctld/slurmctld.h
index e0a21ed7946a63180f220d66ac9734bd082670bf..7731a62820b78ace341452f0e24d97e94d5f1a2f 100644
--- a/src/slurmctld/slurmctld.h
+++ b/src/slurmctld/slurmctld.h
@@ -302,8 +302,7 @@ struct part_record {
 				 * NULL indicates all */
 	char *allow_groups;	/* comma delimited list of groups,
 				 * NULL indicates all */
-	uid_t *allow_uids;	/* zero terminated list of allowed
-				 * users */
+	uid_t *allow_uids;	/* zero terminated list of allowed user IDs */
 	char *allow_qos;	/* comma delimited list of qos,
 				 * NULL indicates all */
 	bitstr_t *allow_qos_bitstr; /* (DON'T PACK) assocaited with
@@ -1485,8 +1484,8 @@ extern void pack_all_stat(int resp, char **buffer_ptr, int *buffer_size,
 
 /*
  * pack_ctld_job_step_info_response_msg - packs job step info
- * IN job_id - specific id or zero for all
- * IN step_id - specific id or zero for all
+ * IN job_id - specific id or NO_VAL for all
+ * IN step_id - specific id or NO_VAL for all
  * IN uid - user issuing request
  * IN show_flags - job step filtering options
  * OUT buffer - location to store data, pointers automatically advanced