Skip to content

Commit

Permalink
Merge pull request #4024 from fhs/doc-manual
Browse files Browse the repository at this point in the history
doc/manual: fix formatting
  • Loading branch information
kmsquire committed Aug 12, 2013
2 parents c8a536e + a1637d3 commit 5fba85e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/manual/style-guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ is passed that does not support any of the requisite operations.
(This is known as `duck typing <http://en.wikipedia.org/wiki/Duck_typing>`_.)

For example, consider the following definitions of a function
``addone`` that returns one plus its argument:
``addone`` that returns one plus its argument::

addone(x::Int) = x + 1 # works only for Int
addone(x::Integer) = x + one(x) # any integer type
Expand Down

0 comments on commit 5fba85e

Please sign in to comment.