Skip to content

Commit

Permalink
[docs] small formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
junjuew committed Apr 21, 2020
1 parent d3e242b commit 5d7da55
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 10 deletions.
5 changes: 0 additions & 5 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,3 @@ Development Lead
----------------

* Junjue Wang <junjuew@cs.cmu.edu>

Contributors
------------

None yet. Why not be the first?
2 changes: 1 addition & 1 deletion gabrieltool/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Gabrieltool is a set of tools and libraries for fast prototyping wearable cognitive assistants.
"""A set of tools and libraries for fast prototyping wearable cognitive assistants.
"""
__version__ = '0.0.9'
2 changes: 1 addition & 1 deletion gabrieltool/statemachine/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Library to build application logic as a Finite State Machine.
*_pb2 modules are generated python modules by Protobuf for serialization.
\*_pb2 modules are generated python modules by Protobuf for serialization.
See the proto directory for the serialization formats.
"""

Expand Down
7 changes: 4 additions & 3 deletions gabrieltool/statemachine/fsm.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
This modules provides components to create, edit, serialize, and deserialize a
finite state machine. Below is a list of key concepts.
* State: FSM states represents the status of a cognitive assistant. States
* State: FSM states represents the status of a cognitive assistant. States
have Processors, which are executed to analyze the input data when the
application is in the state.
* Transitions: Transitions define the conditions (TransitionPredicate) for
* Transitions: Transitions define the conditions (TransitionPredicate) for
state change and actions (Instruction) to take when changing states.
* Finite State Machine (StateMachine): An FSM is a set of states and
* Finite State Machine (StateMachine): An FSM is a set of states and
transitions. Helper functions are provided in the StateMachine class for
serialization, deserialization and traversal.
"""
Expand Down

0 comments on commit 5d7da55

Please sign in to comment.