Skip to content

Commit

Permalink
Merge pull request #1379 from blowsie/master
Browse files Browse the repository at this point in the history
Fixed typo  Determin >  Determine
  • Loading branch information
madskristensen committed Aug 8, 2014
2 parents 7fd9055 + 3f6fca1 commit 38b10bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion EditorExtensions/Images/Sprite/SpriteDocument.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public async Task<XDocument> WriteSpriteRecipe()
new XElement("orientation", IsVertical ? "vertical" : "horizontal"),
new XComment("File extension of sprite image."),
new XElement("outputType", FileExtension.ToString().ToLowerInvariant()),
new XComment("Determin whether to generate/re-generate this sprite on building the solution."),
new XComment("Determine whether to generate/re-generate this sprite on building the solution."),
new XElement("runOnBuild", RunOnBuild.ToString().ToLowerInvariant()),
new XComment("Use full path to generate unique class or mixin name in CSS, LESS and SASS files. Consider disabling this if you want class names to be filename only."),
new XElement("fullPathForIdentifierName", UseFullPathForIdentifierName.ToString().ToLowerInvariant()),
Expand Down
2 changes: 1 addition & 1 deletion EditorExtensions/Misc/Bundles/BundleDocument.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public async Task<XDocument> WriteBundleRecipe()
new XElement("settings",
new XComment("Determines if the bundle file should be automatically optimized after creation/update."),
new XElement("minify", Minified.ToString().ToLowerInvariant()),
new XComment("Determin whether to generate/re-generate this bundle on building the solution."),
new XComment("Determine whether to generate/re-generate this bundle on building the solution."),
new XElement("runOnBuild", RunOnBuild.ToString().ToLowerInvariant()),
new XComment("Specifies a custom subfolder to save files to. By default, compiled output will be placed in the same folder and nested under the original file."),
new XElement("outputDirectory", OutputDirectory)
Expand Down

0 comments on commit 38b10bd

Please sign in to comment.