Skip to content

Commit

Permalink
fix inconsistent spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
seancaffery committed Feb 5, 2012
1 parent b401aa6 commit 671b9cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/stepdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ begin
Stepdown.quiet = options.quiet
Stepdown.output_directory = options.output_directory

Stepdown::Analyzer.new(options.steps_dir, options.features_dir, options.reporter).analyse
Stepdown::Analyzer.new(options.steps_dir, options.features_dir, options.reporter).analyze

rescue Interrupt => e
puts "Quiting..."
Expand Down
2 changes: 1 addition & 1 deletion lib/stepdown/analyzer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def initialize(steps_dir, feature_dir, reporter)
@reporter = reporter
end

def analyse
def analyze
scenarios = collect_scenarios

stats = Statistics.new(scenarios, instance.step_collection)
Expand Down
2 changes: 1 addition & 1 deletion spec/lib/stepdown/analyzer_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
Stepdown::YamlWriter.should_receive(:write).with(anything)
Stepdown::Graph.should_receive(:create_graph)

@analyzer.analyse
@analyzer.analyze
end
end

Expand Down

0 comments on commit 671b9cd

Please sign in to comment.