examples/lazy.rb in logging-2.1.0 vs examples/lazy.rb in logging-2.2.0
- old
+ new
@@ -1,9 +1,9 @@
# :stopdoc:
#
# It happens sometimes that it is very expensive to construct a logging
# message; for example, if a large object structure has to be traversed
-# during executing of an `object.to_s` method. It would be convenient to
+# during execution of an `object.to_s` method. It would be convenient to
# delay creation of the message until the log event actually takes place.
#
# For example, with a logger configured only to show WARN messages and higher,
# creating the log message for an INFO message would be wasteful. The INFO log
# event would never be generated in this case.