···313313 if (last_predicted == NULL && last_completed == NULL) {
314314 f = do_clean_slate_frame(pc, now_ns);
315315 } else if (last_completed == last_predicted) {
316316- // Very high propability that we missed a frame.
316316+ // Very high probability that we missed a frame.
317317 f = walk_forward_through_frames(pc, last_completed->earliest_present_time_ns, now_ns);
318318 } else if (last_completed != NULL) {
319319 assert(last_predicted != NULL);
+2-2
src/xrt/auxiliary/util/u_session.h
···5656/*!
5757 * Create a session, optionally pass in a @ref u_system. If @p usys is not NULL
5858 * the call register this session on that system. This function is exposed so
5959- * that code can re-use @ref u_session as a base class.
5959+ * that code can reuse @ref u_session as a base class.
6060 *
6161 * @public @memberof u_session
6262 * @ingroup aux_util
···66666767/*!
6868 * Push an event to this session. This function is exposed so that code can
6969- * re-use @ref u_session as a base class.
6969+ * reuse @ref u_session as a base class.
7070 *
7171 *
7272 * @public @memberof u_session