Grouping same methods under one subsection
Change-Id: I8915435632d5a92cabe6cf5335146729507ab6e5
diff --git a/face.rst b/face.rst
index 77cce7f..1faf5c6 100644
--- a/face.rst
+++ b/face.rst
@@ -9,8 +9,11 @@
:[Python]:
Module: ``pyndn``
+Face Constructors
+-----------------
+
Face Constructor (explicit Transport)
--------------------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Create a new Face object with the given Transport to manage NDN communication.
@@ -61,7 +64,7 @@
port: 9696
Face Constructor (default Transport)
-------------------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Create a new Face object with optional settings to manage NDN communication.
@@ -111,8 +114,11 @@
host: null, // If null, use getHostAndPort when connecting.
port: 9696
+Face.expressInterest Methods
+----------------------------
+
Face.expressInterest Method (from Interest)
--------------------------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Send the interest through the transport, read the entire response and call onData. If the interest times out according to interest lifetime, call onTimeout (if not omitted).
@@ -167,7 +173,7 @@
The pending interest ID which can be used with removePendingInterest.
Face.expressInterest Method (from Name)
----------------------------------------
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Encode name as an Interest, using the interestTemplate if supplied, send the interest through the transport, read the entire response and call onData. If the interest times out according to interest lifetime, call onTimeout (if not omitted).
C++ only: Your application must call processEvents.