fixed a typo in a comment.
[platform/upstream/glib.git] / ghash.c
diff --git a/ghash.c b/ghash.c
index 3c6bc99..62f4b95 100644 (file)
--- a/ghash.c
+++ b/ghash.c
@@ -114,7 +114,7 @@ g_hash_table_new (GHashFunc    hash_func,
  * @key_equal_func: a function to check two keys for equality.
  * @key_destroy_func: a function to free the memory allocated for the key 
  *   used when removing the entry from the #GHashTable or #NULL if you 
- *   you don't want to supply such a function.
+ *   don't want to supply such a function.
  * @value_destroy_func: a function to free the memory allocated for the 
  *   value used when removing the entry from the #GHashTable or #NULL if 
  *   you don't want to supply such a function.
@@ -564,39 +564,6 @@ g_hash_table_size (GHashTable *hash_table)
   return hash_table->nnodes;
 }
 
-/**
- * g_hash_table_freeze:
- * @hash_table: a #GHashTable.
- * 
- * This function is deprecated and will be removed in the next major
- * release of GLib. It does nothing.
- **/
-void
-g_hash_table_freeze (GHashTable *hash_table)
-{
-#ifdef G_ENABLE_DEBUG
-  static gboolean first_call = TRUE;
-
-  if (first_call)
-    {
-      g_warning("g_hash_table_freeze and g_hash_table_thaw are deprecated.");
-      first_call = FALSE;
-    }
-#endif /* G_ENABLE_DEBUG */
-}
-
-/**
- * g_hash_table_thaw:
- * @hash_table: a #GHashTable.
- * 
- * This function is deprecated and will be removed in the next major
- * release of GLib. It does nothing.
- **/
-void
-g_hash_table_thaw (GHashTable *hash_table)
-{
-}
-
 static void
 g_hash_table_resize (GHashTable *hash_table)
 {