Skip to content

Commit

Permalink
fix non-ascii characters in docs for pdflatex
Browse files Browse the repository at this point in the history
- replaced <= unicode character with 2 characters

- replace strange full-width comma (followed by space) with a comma
  • Loading branch information
kupsch authored and hainest committed Apr 3, 2024
1 parent a517a79 commit b98a1cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/dyninstAPI/developer/BPatch_memoryAccess_NP.h.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ BPatch_memoryAccess_NP.h
.. cpp:function:: int getReg(unsigned i)

Return the register number for the ``ith`` register in the sum,
where ``0 i 2``. Register numbers are positive; a value of -1 means no
where ``0 <= i <= 2``. Register numbers are positive; a value of -1 means no
register.

.. cpp:function:: int getScale()
Expand Down
4 changes: 2 additions & 2 deletions docs/patchAPI/public/PatchCFG.h.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ PatchCFG.h

.. cpp:function:: PatchBlock* getImmediateDominator(PatchBlock* A)

Return the immediate dominator of block ``A``\ \ ``NULL`` if the block
Return the immediate dominator of block ``A``\ ,\ ``NULL`` if the block
``A`` does not have an immediate dominator.

.. cpp:function:: void getImmediateDominates(PatchBlock* A, set<PatchBlock*>& imm)
Expand All @@ -93,7 +93,7 @@ PatchCFG.h

.. cpp:function:: PatchBlock* getImmediatePostDominator(PatchBlock* A)

Return the immediate post-dominator of block ``A``\ \ ``NULL`` if the
Return the immediate post-dominator of block ``A``\ ,\ ``NULL`` if the
block ``A`` does not have an immediate post-dominator.

.. cpp:function:: void getImmediatePostDominates(PatchBlock* A, set<PatchBlock*>& imm)
Expand Down

0 comments on commit b98a1cf

Please sign in to comment.