Skip to content

Commit

Permalink
remove superfluous vs
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Nov 21, 2014
1 parent 51e129c commit dbc216c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/server/sonicpi/lib/sonicpi/docsystem.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def docs_html_map
html << v[:doc] << "\n</p>\n"
html << "<p><font size=\"3\", #{hv_face}>\n"
html << "<span style=\"color:white;background-color:darkorange;\">"
html << "Introduced in v" << v[:introduced].to_s << "\n</span></p>\n"
html << "Introduced in " << v[:introduced].to_s << "\n</span></p>\n"

html << "<table cellpadding=\"8\">\n"
html << " <tr>\n <th></th><th></th><th></th>\n </tr>\n"
Expand Down
2 changes: 1 addition & 1 deletion app/server/sonicpi/lib/sonicpi/synthinfo.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3850,7 +3850,7 @@ def self.info_doc_html_map(klass)

doc << "<p><font size=\"3\", #{hv_face}>\n"
doc << "<span style=\"color:white;background-color:darkorange;\">"
doc << "Introduced in v" << v.introduced.to_s << "\n</span></p>\n"
doc << "Introduced in " << v.introduced.to_s << "\n</span></p>\n"

doc << "<table cellpadding=\"8\">\n"
doc << "<tr><th></th><th></th></tr>\n"
Expand Down

0 comments on commit dbc216c

Please sign in to comment.