Skip to content

Commit f480351

Browse files
committed
fixup typo
1 parent 5c56992 commit f480351

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Packages/com.unity.inputsystem/InputSystem/Actions/Composites/AxisComposite.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,15 +212,15 @@ public enum WhichSideWins
212212
internal class AxisCompositeEditor : InputParameterEditor<AxisComposite>
213213
{
214214
private const string label = "Which Side Wins";
215-
private const string tolltip = "Determine which axis 'wins' if both are actuated at the same time. "
215+
private const string tooltip = "Determine which axis 'wins' if both are actuated at the same time. "
216216
+ "If 'Neither' is selected, the result is 0 (or, more precisely, "
217217
+ "the midpoint between minValue and maxValue).";
218218

219219
public override void OnDrawVisualElements(VisualElement root, Action onChangedCallback)
220220
{
221221
var modeField = new EnumField(label, target.whichSideWins)
222222
{
223-
tooltip = tolltip
223+
tooltip = tooltip
224224
};
225225

226226
modeField.RegisterValueChangedCallback(evt =>

0 commit comments

Comments
 (0)