Skip to content

Commit

Permalink
[PR] Fix spellong and tyops
Browse files Browse the repository at this point in the history
The word "colour" was spelled wrong in one place, and spelled "wrong" (american version) in another. These have now been corrected. No functional changes.
  • Loading branch information
PrincessRTFM committed Jul 8, 2024
1 parent afa273e commit 3e4d13e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions PositionalGuide/ConfigWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -245,13 +245,13 @@ public override void Draw() {
ImGui.PushStyleVar(ImGuiStyleVar.Alpha, circleColours[0] ? InactiveOptionAlpha : 1);

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

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

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

utils.Tooltip("As above but only for the outer circle.");
Expand Down
2 changes: 1 addition & 1 deletion PositionalGuide/PositionalGuide.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Product>PositionalGuide</Product>
<Version>4.6.1</Version>
<Version>4.6.2</Version>
<Description>Provides drawn guidelines to see where you need to stand to hit enemies with positionals</Description>
<Copyright>Copyleft VariableVixen 2022</Copyright>
<PackageProjectUrl>https://github.com/PrincessRTFM/PositionalAssistant</PackageProjectUrl>
Expand Down

0 comments on commit 3e4d13e

Please sign in to comment.