Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
shut doxygen up about unknown html tags
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 29 Jun 2007 13:36:21 +0000 (13:36 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 29 Jun 2007 13:36:21 +0000 (13:36 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3614 48e7efb5-ca39-0410-a469-dd3cf9ba447f

doc/FAQ.doc
src/xbt/xbt_peer.c

index d66e413..aa394b9 100644 (file)
@@ -930,8 +930,8 @@ links 1 and 2). It simply means that the routing on the graph is not
 trivial, and that data do not following the shortest path in number of
 hops on this graph. Another way to say it is that there is no implicit
 in these routing descriptions. The system will only use the routes you
-declare (such as <route src="A" dst="C"><route_element
-name="3"/></route>), without trying to build new routes by aggregating
+declare (such as &lt;route src="A" dst="C"&gt;&lt;route_element
+name="3"/&gt;&lt;/route&gt;), without trying to build new routes by aggregating
 the provided ones.
   
 You are also free to declare platform where the routing is not
index d5b3598..9e7c3e8 100644 (file)
@@ -25,7 +25,7 @@ xbt_peer_t xbt_peer_copy(xbt_peer_t h) {
    return xbt_peer_new(h->name,h->port);
 }
 
-/** \brief constructor. Argument should be of form '<peername>:<port>'. */
+/** \brief constructor. Argument should be of form '(peername):(port)'. */
 xbt_peer_t xbt_peer_from_string(const char *peerport)  {
    xbt_peer_t res=xbt_new(s_xbt_peer_t, 1);
    char *name=xbt_strdup(peerport);