Skip to content

Commit b319a52

Browse files
authored
Fix a few typos (#14)
1 parent 24584c3 commit b319a52

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/how-to/rotate-log-files.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ for example to keep the individual files below 10MB.
1111
The [LoggingExtras.jl](@ref) package implements the [`DatetimeRotatingFileLogger`]
1212
(@ref LoggingExtras.DatetimeRotatingFileLogger) which, as the name suggests, is a logger
1313
for date/time based log rotation. The frequency of log rotation is determined based
14-
on the input filename patterin in the form of a dateformat (see documentation for [`Dates.DateFormat`](https://docs.julialang.org/en/v1/stdlib/Dates/#Dates.DateFormat) and
14+
on the input filename pattern in the form of a dateformat (see documentation for [`Dates.DateFormat`](https://docs.julialang.org/en/v1/stdlib/Dates/#Dates.DateFormat) and
1515
[`dateformat"..."`](https://docs.julialang.org/en/v1/stdlib/Dates/#Dates.@dateformat_str)).
1616

1717
Let's look at an initial example:
@@ -38,7 +38,7 @@ rm(logdir; recursive=true, force=true) # hide
3838
```
3939

4040
This is a logger that will rotate the log file every day, since "day" is the smallest
41-
datetime unit in the filaname pattern.
41+
datetime unit in the filename pattern.
4242

4343
!!! note
4444
Note that all characters in the filename pattern that should not be part of of the
@@ -61,7 +61,7 @@ $ ls logs/
6161
---
6262

6363
Let's now improve the logger by adding two features that are commonly used in `logrotate`:
64-
file compression and file retention policy. Log files are usually quite compressable
64+
file compression and file retention policy. Log files are usually quite compressible
6565
and adding compression could save us some space. A file retention policy let us keep log
6666
files for a fixed number of days, for example 30, and then automatically delete them.
6767
Support for compression and retention policies are not built-in, but there are external

src/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The aim of this document is to be a "one-stop-shop" for everything related to lo
99
Julia. The document is structured as follows[^1]:
1010

1111
- _**Tutorials**_ will teach you the basics of Julia's logging system.
12-
- _**How-to guides**_ will guide you through the steps involved in adressing common tasks
12+
- _**How-to guides**_ will guide you through the steps involved in addressing common tasks
1313
and use-cases. They are more advanced than tutorials and assume some knowledge of Julia's
1414
logging system.
1515
- _**Reference**_ contains technical reference of functions and APIs (e.g. the docstrings).

src/tutorials/logging-basics.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Logging basics
22

33
In this tutorial we will learn the basics of how to emit *log messages* or *log events*.
4-
We will also learn a bit about what information each message consist of and what happens
4+
We will also learn a bit about what information each message consists of and what happens
55
after the log message is emitted. If you are writing a script or a package this section
66
should cover everything you need.
77

0 commit comments

Comments
 (0)