summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgebele <gebele@in-silico.ch>2014-02-20 17:11:04 +0100
committergebele <gebele@in-silico.ch>2014-02-20 17:11:04 +0100
commit7c40c78b4cdab525cbb4ade88032830644a2a3b1 (patch)
treee86ff52d0a125b106984e16e77c07c8cddb379bc
parent44500064f7e611b214c55f500d930cd658138128 (diff)
fixed typo
-rw-r--r--application.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/application.rb b/application.rb
index 31a593d..e3338c1 100644
--- a/application.rb
+++ b/application.rb
@@ -233,7 +233,7 @@ class Application < Sinatra::Base
elsif @accept == "text/csv"
@assays and !@assays.empty? ? csv_file("predicted_assays") : "No PubChem data\n"
else
- @assays and !@assays.empty? ? haml(:predicted_assays, :layout => false) : "<p><em>Insuffucient PubChem data for read across predictions.</em></p>"
+ @assays and !@assays.empty? ? haml(:predicted_assays, :layout => false) : "<p><em>Insufficient PubChem data for read across predictions.</em></p>"
end
end
@@ -245,7 +245,7 @@ class Application < Sinatra::Base
elsif @accept == "text/csv"
@assays and !@assays.empty? ? csv_file("target_readacross") : "No PubChem data\n"
else
- @assays and !@assays.empty? ? haml(:predicted_targets, :layout => false) : "<p><em>Insuffucient PubChem data for read across predictions.</em></p>"
+ @assays and !@assays.empty? ? haml(:predicted_targets, :layout => false) : "<p><em>Insufficient PubChem data for read across predictions.</em></p>"
end
end