@@ -89,7 +89,7 @@ Arguments can be passed to functions in four different ways.
89891. **Positional arguments ** are mandatory and have no default values. They are
9090 the simplest form of arguments and they can be used for the few function
9191 arguments that are fully part of the function's meaning and their order is
92- natural. For instance, in ``send(message, recipient) `` or ``point(x, y) ``
92+ natural. For instance, in ``send(message, recipient) `` or ``point(x, y) ``
9393 the user of the function has no difficulty remembering that those two
9494 functions require two arguments, and in which order.
9595
@@ -190,15 +190,15 @@ them is very important.
190190Like a kung fu master, a Pythonista knows how to kill with a single finger, and
191191never to actually do it.
192192
193- We are all consenting adults
193+ We are all responsible users
194194~~~~~~~~~~~~~~~~~~~~~~~~~~~~
195195
196196As seen above, Python allows many tricks, and some of them are potentially
197197dangerous. A good example is that any client code can override an object's
198198properties and methods: there is no "private" keyword in Python. This
199199philosophy, very different from highly defensive languages like Java, which
200200give a lot of mechanisms to prevent any misuse, is expressed by the saying: "We
201- are all consenting adults ".
201+ are all responsible users ".
202202
203203This doesn't mean that, for example, no properties are considered private, and
204204that no proper encapsulation is possible in Python. Rather, instead of relying
0 commit comments