From b35e30e727a811a8b69decba663d5ad463553e70 Mon Sep 17 00:00:00 2001 From: "mads.s.ager" Date: Mon, 1 Sep 2008 18:48:24 +0000 Subject: [PATCH] Comment formatting change. git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@83 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- include/v8.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/include/v8.h b/include/v8.h index fa9dab1..2b2926b 100644 --- a/include/v8.h +++ b/include/v8.h @@ -1786,29 +1786,29 @@ class EXPORT V8 { /** * Enables the host application to receive a notification before a - * major garbage colletion. Allocations are not allowed in the callback - * function, - * you therefore cannot manipulate objects (set or delete properties - * for example) since it is possible such operations will result in - * the allocation of objects. + * major garbage colletion. Allocations are not allowed in the + * callback function, you therefore cannot manipulate objects (set + * or delete properties for example) since it is possible such + * operations will result in the allocation of objects. */ static void SetGlobalGCPrologueCallback(GCCallback); /** * Enables the host application to receive a notification after a - * major garbage collection. Allocations are not allowed in the callback function, - * you therefore cannot manipulate objects (set or delete properties - * for example) since it is possible such operations will result in - * the allocation of objects. + * major garbage collection. Allocations are not allowed in the + * callback function, you therefore cannot manipulate objects (set + * or delete properties for example) since it is possible such + * operations will result in the allocation of objects. */ static void SetGlobalGCEpilogueCallback(GCCallback); /** * Allows the host application to group objects together. If one * object in the group is alive, all objects in the group are alive. - * After each garbage collection, object groups are removed. It is intended to be - * used in the before-garbage-collection callback function for istance to simulate - * DOM tree connections among JS wrapper objects. + * After each garbage collection, object groups are removed. It is + * intended to be used in the before-garbage-collection callback + * function for istance to simulate DOM tree connections among JS + * wrapper objects. */ static void AddObjectToGroup(void* id, Persistent obj); -- 2.7.4