Skip to content

Commit 0e450ef

Browse files
authored
fix,doc: spelling errors (#551)
1 parent a8144f5 commit 0e450ef

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Please try to keep your individual changes as minimal and focussed on the issue
104104
If you discover that the scope of your contribution is growing larger than expected you might want to split the changes into multiple separate contributions to allow a more focussed discussion and review.
105105

106106
It is usually a great idea and often required to add tests for your changes.
107-
This allows us to quickly validate that the changes are working as intended and also guarantees that they wont be broken by other future updates.
107+
This allows us to quickly validate that the changes are working as intended and also guarantees that they won't be broken by other future updates.
108108
For small and targeted functional changes, e.g. supporting a new URL schema, a [unit test](#unit-tests) may be enough.
109109
For contributions that change large-scale behaviour, such as dependency caching features, an [integration test](#integration-tests) is more suited.
110110
Depending on the changes, a combination of both test types may also be appropriate.
@@ -174,4 +174,4 @@ cmake --build build/style --target fix-format
174174

175175
<!-- omit in toc -->
176176
## Attribution
177-
This guide is based on the **contributing-gen**. [Make your own](https://github.com/bttger/contributing-gen)!
177+
This guide is based on the **contributing-gen**. [Make your own](https://github.com/bttger/contributing-gen)!

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ CPMAddPackage(
409409
### [Boost](https://github.com/boostorg/boost)
410410

411411
Boost is a large project and will take a while to download. Using
412-
`CPM_SOURCE_CACHE` is strongly recomended. Cloning moves much more
412+
`CPM_SOURCE_CACHE` is strongly recommended. Cloning moves much more
413413
data than a source archive, so this sample will use a compressed
414414
source archive (tar.xz) release from Boost's github page.
415415

@@ -538,7 +538,7 @@ The URL for branch `v2.x` of spdlog is:
538538

539539
#### Tag
540540

541-
Tags are simiar, but with this format:
541+
Tags are similar, but with this format:
542542

543543
`https://github.com/<user>/<name>/archive/refs/tags/<tag-name>.<archive-type>`
544544

@@ -561,7 +561,7 @@ Example:
561561

562562
### Determining the Hash
563563

564-
The following snipet illustrates determining the SHA256 hash on a linux machine using `wget` and `sha256sum`:
564+
The following snippet illustrates determining the SHA256 hash on a linux machine using `wget` and `sha256sum`:
565565
```bash
566566
wget https://github.com/gabime/spdlog/archive/refs/tags/v1.13.0.zip -O - | sha256sum
567567
```

test/integration/test_simple.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def test_update_single_package
7070

7171
exes = Dir[exe_dir + '/**/*'].filter {
7272
# on multi-configuration generators (like Visual Studio) the executables will be in bin/<Config>
73-
# also filter-out other articacts like .pdb or .dsym
73+
# also filter-out other artifacts like .pdb or .dsym
7474
!File.directory?(_1) && File.stat(_1).executable?
7575
}.map {
7676
# remove .exe extension if any (there will be one on Windows)

0 commit comments

Comments
 (0)