Skip to content

Commit 8380ff6

Browse files
committed
Reflow comment text in basic example
1 parent 2afae44 commit 8380ff6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

examples/basic/example.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@
3939
},
4040
}
4141

42-
# Load the plugins. Any functionality that you want to implement must be called
43-
# from a plugin. You can define new plugins that listen for arbitrary events
44-
# from the game. Furthermore, events can even be periodic timers that trigger a
45-
# method.
42+
# Load the plugins.
43+
# Any functionality that you want to implement must be called from a plugin.
44+
# You can define new plugins that listen for arbitrary events from the game.
45+
# Furthermore, events can even be periodic timers that trigger a method.
4646
plugins = default_plugins
4747
plugins.append(('example', ExamplePlugin))
4848

49-
# Instantiate and start the client, which will then run and wait for events to
50-
# occur
49+
# Instantiate and start the client, which will then
50+
# run and wait for events to occur.
5151
client = Client(plugins=plugins, settings=settings)
5252
client.start(SERVER, 25565)

0 commit comments

Comments
 (0)