Skip to content

Commit 3e4d13e

Browse files
committed
[PR] Fix spellong and tyops
The word "colour" was spelled wrong in one place, and spelled "wrong" (american version) in another. These have now been corrected. No functional changes.
1 parent afa273e commit 3e4d13e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

PositionalGuide/ConfigWindow.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,13 +245,13 @@ public override void Draw() {
245245
ImGui.PushStyleVar(ImGuiStyleVar.Alpha, circleColours[0] ? InactiveOptionAlpha : 1);
246246

247247
ImGui.Indent();
248-
changed |= ImGui.Checkbox("Always use the defined colowr for the target circle?", ref circleColours[1]);
248+
changed |= ImGui.Checkbox("Always use the defined colour for the target circle?", ref circleColours[1]);
249249
ImGui.Unindent();
250250

251251
utils.Tooltip("As above but only for the target circle.");
252252

253253
ImGui.Indent();
254-
changed |= ImGui.Checkbox("Always use the defined color for the outer circle?", ref circleColours[2]);
254+
changed |= ImGui.Checkbox("Always use the defined colour for the outer circle?", ref circleColours[2]);
255255
ImGui.Unindent();
256256

257257
utils.Tooltip("As above but only for the outer circle.");

PositionalGuide/PositionalGuide.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
44
<Product>PositionalGuide</Product>
5-
<Version>4.6.1</Version>
5+
<Version>4.6.2</Version>
66
<Description>Provides drawn guidelines to see where you need to stand to hit enemies with positionals</Description>
77
<Copyright>Copyleft VariableVixen 2022</Copyright>
88
<PackageProjectUrl>https://github.com/PrincessRTFM/PositionalAssistant</PackageProjectUrl>

0 commit comments

Comments
 (0)