You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by bo...@apache.org on 2011/11/01 14:35:01 UTC

svn commit: r1195991 - /buildr/trunk/doc/settings_profiles.textile

Author: boisvert
Date: Tue Nov  1 13:35:01 2011
New Revision: 1195991

URL: http://svn.apache.org/viewvc?rev=1195991&view=rev
Log:
Fix typos

Modified:
    buildr/trunk/doc/settings_profiles.textile

Modified: buildr/trunk/doc/settings_profiles.textile
URL: http://svn.apache.org/viewvc/buildr/trunk/doc/settings_profiles.textile?rev=1195991&r1=1195990&r2=1195991&view=diff
==============================================================================
--- buildr/trunk/doc/settings_profiles.textile (original)
+++ buildr/trunk/doc/settings_profiles.textile Tue Nov  1 13:35:01 2011
@@ -81,7 +81,7 @@ repositories:
    - https://intra.net/maven2
    - http://example.com
 
-  relase_to:
+  release_to:
     url: http://intra.net/maven2
     username: john
     password: secret
@@ -97,7 +97,7 @@ im:
 Later your buildfile or addons can reference user preferences using the  hash returned by the @Buildr.settings.user@ accessor.
 
 {% highlight ruby %}
-task 'relase-notification' do
+task 'release-notification' do
  usr, pwd, server = settings.user['im'].values_at('usr', 'pwd', 'server')
  jabber = JabberAPI.new(server, usr, pwd)
  jabber.msg("We are pleased to announce the last stable version #{VERSION}")