From: Michael Orlitzky Date: Fri, 30 Oct 2015 03:38:23 +0000 (-0400) Subject: Update a comment and delete a newline. X-Git-Tag: 0.0.1~41 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=mailshears.git;a=commitdiff_plain;h=8a3e804a4c5f33bee1d80243be6b139e45f07a48 Update a comment and delete a newline. --- diff --git a/lib/mv/plugins/agendav.rb b/lib/mv/plugins/agendav.rb index d5858c0..9c508c9 100644 --- a/lib/mv/plugins/agendav.rb +++ b/lib/mv/plugins/agendav.rb @@ -37,7 +37,6 @@ class AgendavMv # Pretend like we're database-agnostic in case we ever are. raise DatabaseError.new(e) end - end end diff --git a/lib/mv/plugins/davical.rb b/lib/mv/plugins/davical.rb index 63c185c..a7cfe80 100644 --- a/lib/mv/plugins/davical.rb +++ b/lib/mv/plugins/davical.rb @@ -18,7 +18,7 @@ class DavicalMv def mv_user(from, to) - # Delete the given username. DAViCal uses foreign keys properly + # Switch the given usernames. DAViCal uses foreign keys properly # and only supports postgres, so we let the ON UPDATE CASCADE # trigger handle most of the work. sql_queries = ['UPDATE usr SET username = $1 WHERE username = $2']