Auto merge of #110431 - jsoref:spelling-src-etc, r=Mark-Simulacrum

Spelling src etc

The various src/* items seem slightly disparate, so I'm doing src/* individually.

split from https://github.com/rust-lang/rust/pull/110392
This commit is contained in:
bors 2023-04-21 03:42:19 +00:00
commit 77778e075d
3 changed files with 4 additions and 4 deletions

View File

@ -23,7 +23,7 @@
</choices-outline>
<!--
These 'selected' scripts ensure that install and uninstall can never be selected at
the same time. Exectly how they work is pretty mysterious, tied to the unspecified algorithm
the same time. Exactly how they work is pretty mysterious, tied to the unspecified algorithm
the installer uses to traverse the options after one is toggled.
-->
<choice id="install" visible="true"

View File

@ -115,4 +115,4 @@ def synthetic_lookup(valobj, dict):
if rust_type == RustType.STD_REF_CELL:
return StdRefSyntheticProvider(valobj, dict, is_cell=True)
return DefaultSynthteticProvider(valobj, dict)
return DefaultSyntheticProvider(valobj, dict)

View File

@ -69,9 +69,9 @@ def unwrap_unique_or_non_null(unique_or_nonnull):
return ptr if ptr.TypeIsPointerType() else ptr.GetChildAtIndex(0)
class DefaultSynthteticProvider:
class DefaultSyntheticProvider:
def __init__(self, valobj, dict):
# type: (SBValue, dict) -> DefaultSynthteticProvider
# type: (SBValue, dict) -> DefaultSyntheticProvider
# logger = Logger.Logger()
# logger >> "Default synthetic provider for " + str(valobj.GetName())
self.valobj = valobj