Skip to content

Commit 1383a25

Browse files
authored
chore: fix some minor issues in comments (#59054)
fix some minor issues in comments
2 parents 79875f8 + 51dc502 commit 1383a25

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ New library functions
5353
it enables verbose testset entry/exit messages with timing information and sets the default `verbose=true`
5454
for `DefaultTestSet` to show detailed hierarchical test summaries ([#59295]).
5555
* Exporting function `fieldindex` to get the index of a struct's field ([#58119]).
56-
* `Base.donotdelete` is now public. It prevents deadcode elemination of its arguments ([#55774]).
56+
* `Base.donotdelete` is now public. It prevents deadcode elimination of its arguments ([#55774]).
5757
* `Sys.sysimage_target()` returns the CPU target string used to build the current system image ([#58970]).
5858
* `Iterators.findeach` is a lazy version of `findall` ([#54124])
5959

doc/src/devdocs/probes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,8 @@ It's sometimes useful to know when a task is spawning other tasks. This is very
177177
easy to see with `rt__new__task`. The first argument to the probe, `parent`, is
178178
the existing task which is creating a new task. This means that if you know the
179179
address of the task you want to monitor, you can easily just look at the tasks
180-
that that specific task spawned. Let's see how to do this; first let's start a
181-
Julia session and get the PID and REPL's task address:
180+
that were spawned by that specific task. Let's see how to do this; first let's
181+
start a Julia session and get the PID and REPL's task address:
182182

183183
```
184184
> julia

doc/src/devdocs/sanitizers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Since [libblastrampoline](https://github.com/staticfloat/libblastrampoline) by d
3636
uses `RTLD_DEEPBIND`, we need to set the environment variable `LBT_USE_RTLD_DEEPBIND=0`
3737
when using a sanitizer.
3838

39-
To use one of of the sanitizers set `SANITIZE=1` and then the appropriate flag for the sanitizer you
39+
To use one of the sanitizers set `SANITIZE=1` and then the appropriate flag for the sanitizer you
4040
want to use.
4141

4242
On macOS, this might need some extra flags also to work. Altogether, it might

doc/src/manual/performance-tips.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1518,7 +1518,7 @@ Further, note the `Statistics` extension `SparseArraysExt` has been activated be
15181518
tree. i.e. see `0.4 ms Statistics → SparseArraysExt`.
15191519

15201520
This report gives a good opportunity to review whether the cost of dependency load time is worth the functionality it brings.
1521-
Also the `Pkg` utility `why` can be used to report why a an indirect dependency exists.
1521+
Also the `Pkg` utility `why` can be used to report why an indirect dependency exists.
15221522

15231523
```
15241524
(CustomPackage) pkg> why FFMPEG_jll

0 commit comments

Comments
 (0)