[ElmSharp] fixed typo in in Elementary 11/157911/6 5.0.0-preview1-00362
authorSeunghyun Choi <sh4682.choi@samsung.com>
Fri, 27 Oct 2017 01:27:48 +0000 (10:27 +0900)
committerWonYoung Choi <wy80.choi@samsung.com>
Thu, 2 Nov 2017 09:34:21 +0000 (09:34 +0000)
Change-Id: I02bf9b982381524a6f908b97122d000c8cb8dd5c

src/ElmSharp/ElmSharp/Elementary.cs [changed mode: 0755->0644]

old mode 100755 (executable)
new mode 100644 (file)
index ef66745..35c7343
@@ -339,11 +339,21 @@ namespace ElmSharp
         }
 
         /// <summary>
+        /// Use FlushAllCache instead.
+        /// </summary>
+        [Obsolete("use FlushAllCache instead")]
+        [EditorBrowsable(EditorBrowsableState.Never)]
+        public static void FlushAllCashe()
+        {
+            Interop.Elementary.elm_cache_all_flush();
+        }
+
+        /// <summary>
         /// Flush all caches.
         /// Frees all data that was in cache and is not currently being used to reduce memory usage. This frees Edje's, Evas' and Eet's cache.
         /// </summary>
         /// <since_tizen> preview </since_tizen>
-        public static void FlushAllCashe()
+        public static void FlushAllCache()
         {
             Interop.Elementary.elm_cache_all_flush();
         }
@@ -389,4 +399,4 @@ namespace ElmSharp
             Interop.Elementary.elm_config_all_flush();
         }
     }
-}
+}
\ No newline at end of file