]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
treewide: fix typos of let's
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 7 Jul 2015 00:09:54 +0000 (20:09 -0400)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 7 Jul 2015 00:09:54 +0000 (20:09 -0400)
src/core/job.c
src/core/service.c
src/libsystemd-terminal/grdev-drm.c
src/login/logind-seat.c
src/test/test-pty.c

index 8a047df0c3f17592cf922c704ad9a2ce732c16a4..1448e5b69afcba68e069d61d9c550156ef85a51c 100644 (file)
@@ -452,7 +452,7 @@ static bool job_is_runnable(Job *j) {
             j->type == JOB_RELOAD) {
 
                 /* Immediate result is that the job is or might be
-                 * started. In this case lets wait for the
+                 * started. In this case let's wait for the
                  * dependencies, regardless whether they are
                  * starting or stopping something. */
 
@@ -462,7 +462,7 @@ static bool job_is_runnable(Job *j) {
         }
 
         /* Also, if something else is being stopped and we should
-         * change state after it, then lets wait. */
+         * change state after it, then let's wait. */
 
         SET_FOREACH(other, j->unit->dependencies[UNIT_BEFORE], i)
                 if (other->job &&
index fa1e80b7104749dbc295febb1d99a15237079cf2..d72ff54daa37a2b345aec9c915e9c0eab66ced97 100644 (file)
@@ -1235,7 +1235,7 @@ static int main_pid_good(Service *s) {
         /* Returns 0 if the pid is dead, 1 if it is good, -1 if we
          * don't know */
 
-        /* If we know the pid file, then lets just check if it is
+        /* If we know the pid file, then let's just check if it is
          * still valid */
         if (s->main_pid_known) {
 
index 30c1a726eb663d2852ff87eac5ccbb4a9972df33..10c13e348af7dcfdfe65b082b29f8ae07fceebb9 100644 (file)
@@ -2584,7 +2584,7 @@ static int unmanaged_card_new(grdev_card **out, grdev_session *session, struct u
         } else {
                 /* We might get DRM-Master implicitly on open(); drop it immediately
                  * so we acquire it only once we're actually enabled. We don't
-                 * really care whether this call fails or not, but lets log any
+                 * really care whether this call fails or not, but let's log any
                  * weird errors, anyway. */
                 r = ioctl(fd, DRM_IOCTL_DROP_MASTER, 0);
                 if (r < 0 && errno != EACCES && errno != EINVAL)
@@ -2777,7 +2777,7 @@ static int managed_card_resume_device_fn(sd_bus_message *signal,
 
         if (cm->card.fd < 0) {
                 /* This shouldn't happen. We should already own an FD from
-                 * TakeDevice(). However, lets be safe and use this FD in case
+                 * TakeDevice(). However, let's be safe and use this FD in case
                  * we really don't have one. There is no harm in doing this
                  * and our code works fine this way. */
                 fd = fcntl(fd, F_DUPFD_CLOEXEC, 3);
index 3c30eeaa954c47aa2c677924188fb5fc4dc8da0d..23095f51e0c948d0290eabbc1f0c3df0db41e67b 100644 (file)
@@ -483,7 +483,7 @@ void seat_evict_position(Seat *s, Session *session) {
                 s->positions[pos] = NULL;
 
                 /* There might be another session claiming the same
-                 * position (eg., during gdm->session transition), so lets look
+                 * position (eg., during gdm->session transition), so let's look
                  * for it and set it on the free slot. */
                 LIST_FOREACH(sessions_by_seat, iter, s->sessions) {
                         if (iter->pos == pos) {
index 3f97a64ccd5957fdad34befdc76958555c7a7b7f..fbab3d4ebe623ebe4c33586614809dac1ce23d61 100644 (file)
@@ -133,7 +133,7 @@ int main(int argc, char *argv[]) {
 
         /* Oh, there're ugly races in the TTY layer regarding HUP vs IN. Turns
          * out they appear only 10% of the time. I fixed all of them and
-         * don't see them, anymore. But lets be safe and run this 1000 times
+         * don't see them, anymore. But let's be safe and run this 1000 times
          * so we catch any new ones, in case they appear again. */
         for (i = 0; i < 1000; ++i)
                 test_pty();