Skip to content

Commit

Permalink
init: Turn fork URL into a Markdown link (#5644)
Browse files Browse the repository at this point in the history
  • Loading branch information
woodruffw authored and bcardiff committed Apr 10, 2018
1 parent 27697cf commit f91af5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions spec/compiler/crystal/tools/init_spec.cr
Expand Up @@ -106,7 +106,7 @@ dependencies:
readme.should contain(%{TODO: Write a description here})
readme.should_not contain(%{TODO: Write installation instructions here})
readme.should contain(%{require "example"})
readme.should contain(%{1. Fork it ( https://github.com/jsmith/example/fork )})
readme.should contain(%{1. Fork it (<https://github.com/jsmith/example/fork>)})
readme.should contain(%{[jsmith](https://github.com/jsmith) John Smith - creator, maintainer})
end

Expand All @@ -122,7 +122,7 @@ dependencies:
readme.should contain(%{TODO: Write a description here})
readme.should contain(%{TODO: Write installation instructions here})
readme.should_not contain(%{require "example"})
readme.should contain(%{1. Fork it ( https://github.com/jsmith/example_app/fork )})
readme.should contain(%{1. Fork it (<https://github.com/jsmith/example_app/fork>)})
readme.should contain(%{[jsmith](https://github.com/jsmith) John Smith - creator, maintainer})
end

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/crystal/tools/init/template/readme.md.ecr
Expand Up @@ -32,7 +32,7 @@ TODO: Write development instructions here

## Contributing

1. Fork it ( https://github.com/<%= config.github_name %>/<%= config.name %>/fork )
1. Fork it (<https://github.com/<%= config.github_name %>/<%= config.name %>/fork>)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
Expand Down

0 comments on commit f91af5f

Please sign in to comment.