Skip to content

Commit 3a1139e

Browse files
authoredApr 22, 2021
docs: fix unintended cyrillics in README.md (#604)
1 parent 8857968 commit 3a1139e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ module.exports = {
7878

7979
| Name | Type | Default | Description |
8080
| :-------------------------------------: | :------------------: | :---------------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------- |
81-
| [`from`](#from) | `{String}` | `undefined` | Glob or path from where we сopy files. |
81+
| [`from`](#from) | `{String}` | `undefined` | Glob or path from where we copy files. |
8282
| [`to`](#to) | `{String\|Function}` | `compiler.options.output` | Output path. |
8383
| [`context`](#context) | `{String}` | `options.context \|\| compiler.options.context` | A path that determines how to interpret the `from` path. |
8484
| [`globOptions`](#globoptions) | `{Object}` | `undefined` | [Options][glob-options] passed to the glob pattern matching library including `ignore` option. |
@@ -96,7 +96,7 @@ module.exports = {
9696
Type: `String`
9797
Default: `undefined`
9898

99-
Glob or path from where we сopy files.
99+
Glob or path from where we copy files.
100100
Globs accept [fast-glob pattern-syntax](https://github.com/mrmlnc/fast-glob#pattern-syntax).
101101
Glob can only be a `string`.
102102

@@ -480,14 +480,14 @@ module.exports = {
480480
plugins: [
481481
new CopyPlugin({
482482
patterns: [
483-
// Сopied second and will overwrite "dir_2/file.txt"
483+
// Copied second and will overwrite "dir_2/file.txt"
484484
{
485485
from: "dir_1/file.txt",
486486
to: "newfile.txt",
487487
force: true,
488488
priority: 10,
489489
},
490-
// Сopied first
490+
// Copied first
491491
{
492492
from: "dir_2/file.txt",
493493
to: "newfile.txt",

0 commit comments

Comments
 (0)
Please sign in to comment.