Hello sage-devel, Here is my first post to this list:
Included in the attached patch file are two documentation typos I found in the reference manual: * http://www.sagemath.org/doc/reference/interfaces/sage/interfaces/gap.html misses a "G" for "GAP". * http://www.sagemath.org/doc/reference/categories/sage/categories/weyl_groups.html links to a Wikipedia article that does not exist, it should be http://en.wikipedia.org/wiki/Weyl_group
Sage is a great system, and I hope to have some more contributions to it in the future.
Best regards, TB -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.com. To post to this group, send email to sage-devel@googlegroups.com. Visit this group at http://groups.google.com/group/sage-devel?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
diff --git a/sage/categories/weyl_groups.py b/sage/categories/weyl_groups.py --- a/sage/categories/weyl_groups.py +++ b/sage/categories/weyl_groups.py @@ -19,7 +19,7 @@ r""" The category of Weyl groups - See: http://en.wikipedia.org/wiki/Weyl_groups + See: http://en.wikipedia.org/wiki/Weyl_group EXAMPLES:: diff --git a/sage/interfaces/gap.py b/sage/interfaces/gap.py --- a/sage/interfaces/gap.py +++ b/sage/interfaces/gap.py @@ -16,7 +16,7 @@ expressions, with the result returned as a string. #. ``gap.new(expr)`` - Creation of a Sage object that - wraps a AP object. This provides a Pythonic interface to GAP. For + wraps a GAP object. This provides a Pythonic interface to GAP. For example, if ``f=gap.new(10)``, then ``f.Factors()`` returns the prime factorization of `10` computed using GAP.