More small doc changes

This commit is contained in:
rocky
2017-09-20 02:49:14 -04:00
parent c7b9e54e59
commit d7b12f4da1
2 changed files with 8 additions and 9 deletions

View File

@@ -276,7 +276,7 @@ MAP = {
} }
# Operator precidence # Operator precidence
# See https://docs.python.org/3/reference/expressions.html # See https://docs.python.org/2/reference/expressions.html
# or https://docs.python.org/3/reference/expressions.html # or https://docs.python.org/3/reference/expressions.html
# for a list. # for a list.
PRECEDENCE = { PRECEDENCE = {

View File

@@ -41,15 +41,14 @@ Python.
# Step 1 determines a table (T) and a path to a # Step 1 determines a table (T) and a path to a
# table key (K) from the node type (N) (other nodes are shown as O): # table key (K) from the node type (N) (other nodes are shown as O):
# #
# N N N&K # N&K N N
# / | ... \ / | ... \ / | ... \ # / | ... \ / | ... \ / | ... \
# O O O O O K O O O # O O O O O K O O O
# | # |
# K # K
# TABLE_DIRECT TABLE_R TABLE_R0
# #
# MAP_R0 (TABLE_R0) MAP_R (TABLE_R) MAP_DIRECT (TABLE_DIRECT) # The default is a "TABLE_DIRECT" mapping. The key K is then extracted from the
#
# The default is a direct mapping. The key K is then extracted from the
# subtree and used to find a table entry T[K], if any. The result is a # subtree and used to find a table entry T[K], if any. The result is a
# format string and arguments (a la printf()) for the formatting engine. # format string and arguments (a la printf()) for the formatting engine.
# Escapes in the format string are: # Escapes in the format string are: