Skip to content

Commit

Permalink
Auto merge of rust-lang#110431 - jsoref:spelling-src-etc, r=Mark-Simu…
Browse files Browse the repository at this point in the history
…lacrum

Spelling src etc

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

split from rust-lang#110392
  • Loading branch information
bors committed Apr 21, 2023
2 parents 8d09b8e + 50240b3 commit 77778e0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/etc/installer/pkg/Distribution.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/etc/lldb_lookup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
4 changes: 2 additions & 2 deletions src/etc/lldb_providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 77778e0

Please sign in to comment.