From 0cc328c70a680d68c8a750d2383a39130d67a397 Mon Sep 17 00:00:00 2001
From: Konstantin Osipov <kostja@tarantool.org>
Date: Mon, 14 May 2012 19:24:40 +0400
Subject: [PATCH] Minor cleanups.

---
 mod/box/box.h   | 2 +-
 mod/box/index.h | 2 --
 mod/box/tree.m  | 2 +-
 3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/mod/box/box.h b/mod/box/box.h
index a8b8816260..ff6ae3eb71 100644
--- a/mod/box/box.h
+++ b/mod/box/box.h
@@ -48,7 +48,7 @@ struct box_txn {
 	u32 flags;
 
 	struct lua_State *L;
-	struct  port *port;
+	struct port *port;
 	struct space *space;
 	Index *index;
 
diff --git a/mod/box/index.h b/mod/box/index.h
index 430d31d4ac..2c518ffa1f 100644
--- a/mod/box/index.h
+++ b/mod/box/index.h
@@ -76,8 +76,6 @@ struct key_def {
 	bool is_unique;
 };
 
-@class Index;
-
 @interface Index: Object {
  @public
 	/* Index owner space */
diff --git a/mod/box/tree.m b/mod/box/tree.m
index 1546651ca0..9ad7a70897 100644
--- a/mod/box/tree.m
+++ b/mod/box/tree.m
@@ -50,7 +50,7 @@ u64_cmp(u64 a, u64 b)
 }
 
 /**
- * Tuple addrress comparison.
+ * Tuple address comparison.
  */
 static inline int
 ta_cmp(struct box_tuple *tuple_a, struct box_tuple *tuple_b)
-- 
GitLab