@@ -321,10 +321,10 @@ def __call__( self, decl ):
321321
322322class calldef_matcher_t ( declaration_matcher_t ):
323323 """
324- Instance of this class will match callable by next criteria:
325- - :class:`declaration_matcher_t` criteria
326- - return type. Example : :class:`int_t` or 'int'
327- - argument types
324+ Instance of this class will match callable by the following criteria:
325+ * :class:`declaration_matcher_t` criteria
326+ * return type. For example : :class:`int_t` or 'int'
327+ * argument types
328328 """
329329
330330 def __init__ ( self , name = None , return_type = None , arg_types = None , decl_type = None , header_dir = None , header_file = None ):
@@ -407,8 +407,8 @@ def __str__( self ):
407407class operator_matcher_t ( calldef_matcher_t ):
408408 """
409409 Instance of this class will match operators by next criteria:
410- - :class:`calldef_matcher_t` criteria
411- - operator symbol: =, !=, (), [] and etc
410+ * :class:`calldef_matcher_t` criteria
411+ * operator symbol: =, !=, (), [] and etc
412412 """
413413 def __init__ ( self , name = None , symbol = None , return_type = None , arg_types = None , decl_type = None , header_dir = None , header_file = None ):
414414 """
@@ -479,14 +479,13 @@ class access_type_matcher_t( matcher_base_t ):
479479 """
480480 Instance of this class will match declaration by its access type: public,
481481 private or protected. If declarations does not have access type, for example
482- free function, then False will be returned.
482+ free function, then ` False` will be returned.
483483 """
484484
485485 def __init__ ( self , access_type ):
486486 """
487- :param access_type: declaration access type
488- :type access_type: :class:ACCESS_TYPES defines few constants for your convenience.
489- Any way you can pass public, private or protected as argument to this function
487+ :param access_type: declaration access type, could be "public", "private", "protected"
488+ :type access_type: :class: `str`
490489 """
491490 matcher_base_t .__init__ ( self )
492491 self .access_type = access_type
0 commit comments