summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSmooth Operator <disruptek@users.noreply.github.com>2021-06-24 13:48:57 -0400
committerGitHub <noreply@github.com>2021-06-24 18:48:57 +0100
commit6be8a66833ee25ad183fa3e4a667e3c0948413d8 (patch)
tree1c6d69a6d2d40da064c15428ea798e89cd64723c
parentf128f7971f6eda5dc9b21af3dbaeccc5dc71da5a (diff)
downloadNim-6be8a66833ee25ad183fa3e4a667e3c0948413d8.tar.gz
couple tiny typo fixes (#18344)
-rw-r--r--lib/pure/times.nim4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/pure/times.nim b/lib/pure/times.nim
index 7bb393aa0..fb48a199c 100644
--- a/lib/pure/times.nim
+++ b/lib/pure/times.nim
@@ -359,7 +359,7 @@ type
   Timezone* = ref object ## \
       ## Timezone interface for supporting `DateTime <#DateTime>`_\s of arbitrary
       ## timezones. The `times` module only supplies implementations for the
-      ## systems local time and UTC.
+      ## system's local time and UTC.
     zonedTimeFromTimeImpl: proc (x: Time): ZonedTime
         {.tags: [], raises: [], benign.}
     zonedTimeFromAdjTimeImpl: proc (x: Time): ZonedTime
@@ -1145,7 +1145,7 @@ proc name*(zone: Timezone): string =
   ## If the timezone doesn't exist in the tz database, or if the timezone
   ## name is unknown, then any string that describes the timezone
   ## unambiguously might be used. For example, the string "LOCAL" is used
-  ## for the systems local timezone.
+  ## for the system's local timezone.
   ##
   ## See also: https://en.wikipedia.org/wiki/Tz_database
   zone.name
f='#n136'>136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207