Skip to content

Commit

Permalink
Merge pull request #230 from onefinestay/readme_typo
Browse files Browse the repository at this point in the history
Readme typo
  • Loading branch information
davidszotten committed Apr 2, 2015
2 parents 3572aeb + e6e12a4 commit 61e26ac
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@ Nameko
A microservices framework for Python that lets service developers concentrate on application logic and encourages testability.
A Nameko service is just a class:
A nameko service is just a class:

.. code-block:: python
# helloworld.py
from nameko.rpc import rpc
class HelloWorld(object):
class GreetingService(object):
name = "greeting_service"
@rpc
def hello(self, name):
Expand All @@ -31,15 +32,15 @@ You can run it in a shell:
.. code-block:: shell
$ nameko run helloworld
starting services: helloworld
starting services: greeting_service
...
And play with it from another:

.. code-block:: pycon
$ nameko shell
>>> n.rpc.helloworld.hello(name="Matt")
>>> n.rpc.greeting_service.hello(name="Matt")
u'Hello, Matt!'
Expand All @@ -55,7 +56,6 @@ Features
Getting Started
---------------

* `Download <https://pypi.python.org/packages/source/n/nameko/nameko-1.14.0.tar.gz#md5=fca6606fdd38d325ad96a40a383e035d>`_ the latest version.
* Check out the `documentation <http://nameko.readthedocs.org>`_.


Expand Down

0 comments on commit 61e26ac

Please sign in to comment.