From 890f9d6e50ebcd8300d26c51e02fd48bc06ab859 Mon Sep 17 00:00:00 2001
From: Bruno Nocera Zanette <bnzanette@inf.ufpr.br>
Date: Tue, 25 Aug 2015 16:17:48 -0300
Subject: [PATCH] Fix Typo: Extra "}" in the end of command string

---
 app/repositories/orient_db/edge_repository.rb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/repositories/orient_db/edge_repository.rb b/app/repositories/orient_db/edge_repository.rb
index 1237f2daa..ccf67a965 100644
--- a/app/repositories/orient_db/edge_repository.rb
+++ b/app/repositories/orient_db/edge_repository.rb
@@ -2,7 +2,7 @@ module OrientDb
   class EdgeRepository < Base
 
     def create_like_edge(from_id, to_id)
-      OrientDb::Client.instance.command "CREATE EDGE Like FROM #{from_id} TO #{to_id}}"
+      OrientDb::Client.instance.command "CREATE EDGE ELike FROM #{from_id} TO #{to_id}"
     end
 
   end
-- 
GitLab