Skip to content

Commit

Permalink
(maint) fix other typos after merging GH-148
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed Mar 7, 2015
1 parent 9f2f6d3 commit 33cf250
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/chocolatey/GetChocolatey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public IEnumerable<T> List<T>()
{
extract_resources();
var configuration = create_configuration(new List<string>());
configuration.RegularOuptut = true;
configuration.RegularOutput = true;
var runner = new GenericRunner();
return runner.list<T>(configuration, _container, isConsole: false, parseArgs: null);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public IEnumerable<ChocolateySource> source_list(ChocolateyConfiguration configu
var list = new List<ChocolateySource>();
foreach (var source in configFileSettings.Sources)
{
if (configuration.RegularOuptut) {
if (configuration.RegularOutput) {
this.Log().Info(() => "{0}{1} - {2}".format_with(source.Id, source.Disabled ? " [Disabled]" : string.Empty, source.Value));
}
list.Add(new ChocolateySource {
Expand Down

0 comments on commit 33cf250

Please sign in to comment.