Skip to content

Fix some typo's in Readme and specfile. #502

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 2, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -961,7 +961,7 @@ And then run the unit tests:

bundle exec rake spec

The unit tests are ran in Travis-CI as well, if you want to see the results of your own tests regsiter the service hook through Travis-CI via the accounts section for your Github clone of this project.
The unit tests are ran in Travis-CI as well, if you want to see the results of your own tests register the service hook through Travis-CI via the accounts section for your Github clone of this project.

If you want to run the system tests, make sure you also have:

Expand Down
4 changes: 2 additions & 2 deletions spec/unit/provider/postgresql_conf/parsed_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@
)
end

it "should allow numbers thorugh without quotes" do
it "should allow numbers through without quotes" do
expect(provider.parse_line("wal_keep_segments = 32")).to eq(
{ :name=>"wal_keep_segments", :value=>"32", :comment=>nil, :record_type=>:parsed }
)
end

it "should allow blanks thorugh " do
it "should allow blanks through " do
expect(provider.parse_line("")).to eq(
{ :line=>"", :record_type=>:blank }
)
Expand Down