Skip to content

Commit 50240b3

Browse files
committed
Spelling tools/compiletest
spelling: exactly spelling: synthetic Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
1 parent c6fb7b9 commit 50240b3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/etc/installer/pkg/Distribution.xml

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

src/etc/lldb_lookup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,4 +115,4 @@ def synthetic_lookup(valobj, dict):
115115
if rust_type == RustType.STD_REF_CELL:
116116
return StdRefSyntheticProvider(valobj, dict, is_cell=True)
117117

118-
return DefaultSynthteticProvider(valobj, dict)
118+
return DefaultSyntheticProvider(valobj, dict)

src/etc/lldb_providers.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ def unwrap_unique_or_non_null(unique_or_nonnull):
6969
return ptr if ptr.TypeIsPointerType() else ptr.GetChildAtIndex(0)
7070

7171

72-
class DefaultSynthteticProvider:
72+
class DefaultSyntheticProvider:
7373
def __init__(self, valobj, dict):
74-
# type: (SBValue, dict) -> DefaultSynthteticProvider
74+
# type: (SBValue, dict) -> DefaultSyntheticProvider
7575
# logger = Logger.Logger()
7676
# logger >> "Default synthetic provider for " + str(valobj.GetName())
7777
self.valobj = valobj

0 commit comments

Comments
 (0)