Skip to content

Commit

Permalink
Add missing comma to metadata example
Browse files Browse the repository at this point in the history
I tried copying and pasting this example of gemspec metadata into a gem
and noticed that it had a syntax error because there's a missing comma.
  • Loading branch information
maxjacobson authored and simi committed Oct 20, 2024
1 parent a00a1c3 commit e0a52c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specification-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ next: /command-reference
"homepage_uri" => "https://bestgemever.example.io",
"mailing_list_uri" => "https://groups.example.com/bestgemever",
"source_code_uri" => "https://example.com/user/bestgemever",
"wiki_uri" => "https://example.com/user/bestgemever/wiki"
"wiki_uri" => "https://example.com/user/bestgemever/wiki",
"funding_uri" => "https://example.com/donate"
}</pre>

Expand Down

0 comments on commit e0a52c4

Please sign in to comment.