Cleanup: Grammar: Fix uses of "it's own"

This commit is contained in:
Hans Goudey 2025-05-29 14:41:20 -04:00
parent 1834f9f200
commit 5747f839e8
6 changed files with 35 additions and 35 deletions

View File

@ -192,7 +192,7 @@ index 2494698c5..6aebc45d4 100644
static const __m128 EPOSINF = _mm_set1_ps(std::numeric_limits<float>::infinity());
+// These funtions won't work when using MSVC + ARM64 unless you specify /Zc:arm64-aliased-neon-types-
+// This comes with it's own issues, so it is easier to just disable them when using MSVC + ARM64
+// This comes with its own issues, so it is easier to just disable them when using MSVC + ARM64
+#if !defined(_M_ARM64)
// Debug function to print out the contents of a floating-point SSE register
inline void ssePrintRegister(const char* msg, __m128& reg)

View File

@ -1837,7 +1837,7 @@ class _RepoDataSouce_TOML_FILES(_RepoDataSouce_ABC):
"""
Detect a change and return as early as possibly.
Ideally this would not have to scan many files, since this could become *expensive*
with very large repositories however as each package has it's own TOML,
with very large repositories however as each package has its own TOML,
there is no viable alternative.
"""
# Caller must check `self.exists()`.

View File

@ -914,7 +914,7 @@ def extension_path_user(package, *, path="", create=False):
.. note::
This allows each extension to have it's own user directory to store files.
This allows each extension to have its own user directory to store files.
The location of the extension it self is not a suitable place to store files
because it is cleared each upgrade and the users may not have write permissions

View File

@ -2708,7 +2708,7 @@ bool EDBM_selectmode_set_multi(bContext *C, const short selectmode)
*
* While this is almost always the case as the UI syncs the values when set,
* it's not guaranteed because objects can be shared across scenes and each
* scene has it's own select-mode which is applied to the object when entering edit-mode.
* scene has its own select-mode which is applied to the object when entering edit-mode.
*
* This function should only be used when the an operation would cause errors
* when applied in the wrong selection mode.

View File

@ -385,7 +385,7 @@ void BPY_python_start(bContext *C, int argc, const char **argv)
}
else {
PyConfig_InitIsolatedConfig(&config);
/* Python's isolated config disables it's own signal overrides.
/* Python's isolated config disables its own signal overrides.
* While it makes sense not to interfering with other components of the process,
* the signal handlers are needed for Python's own error handling to work properly.
* Without this a `SIGPIPE` signal will crash Blender, see: #129657. */

View File

@ -1601,7 +1601,7 @@ static uiBlock *wm_block_dialog_create(bContext *C, ARegion *region, void *user_
const bool windows_layout = false;
#endif
/* Check there are no active default buttons, allowing a dialog to define it's own
/* Check there are no active default buttons, allowing a dialog to define its own
* confirmation buttons which are shown instead of these, see: #124098. */
if (!UI_block_has_active_default_button(uiLayoutGetBlock(layout))) {
/* New column so as not to interfere with custom layouts, see: #26436. */