The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

a/util: : Fix codespell errors.

authored by

Rylie Pavlik and committed by
Simon Zeni
ae88c4c1 80e0b449

+4 -4
+1 -1
src/xrt/auxiliary/util/u_device.c
··· 25 25 26 26 /* 27 27 * 28 - * Matricies. 28 + * Matrices. 29 29 * 30 30 */ 31 31
+1 -1
src/xrt/auxiliary/util/u_pacing_compositor.c
··· 313 313 if (last_predicted == NULL && last_completed == NULL) { 314 314 f = do_clean_slate_frame(pc, now_ns); 315 315 } else if (last_completed == last_predicted) { 316 - // Very high propability that we missed a frame. 316 + // Very high probability that we missed a frame. 317 317 f = walk_forward_through_frames(pc, last_completed->earliest_present_time_ns, now_ns); 318 318 } else if (last_completed != NULL) { 319 319 assert(last_predicted != NULL);
+2 -2
src/xrt/auxiliary/util/u_session.h
··· 56 56 /*! 57 57 * Create a session, optionally pass in a @ref u_system. If @p usys is not NULL 58 58 * the call register this session on that system. This function is exposed so 59 - * that code can re-use @ref u_session as a base class. 59 + * that code can reuse @ref u_session as a base class. 60 60 * 61 61 * @public @memberof u_session 62 62 * @ingroup aux_util ··· 66 66 67 67 /*! 68 68 * Push an event to this session. This function is exposed so that code can 69 - * re-use @ref u_session as a base class. 69 + * reuse @ref u_session as a base class. 70 70 * 71 71 * 72 72 * @public @memberof u_session