Skip to content

Commit 71e5af7

Browse files
committed
chore: Fix typos throughout code base
1 parent 1e9c177 commit 71e5af7

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ $ make docker
9090

9191
### System Setup
9292

93-
If you use Arch Linux, you can install [this AUR package](https://aur.archlinux.org/packages/fontship) (prebuilt in [this repostiory](https://wiki.archlinux.org/index.php/Unofficial_user_repositories#alerque)).
93+
If you use Arch Linux, you can install [this AUR package](https://aur.archlinux.org/packages/fontship) (prebuilt in [this repository](https://wiki.archlinux.org/index.php/Unofficial_user_repositories#alerque)).
9494

9595
Otherwise to install and use locally from source, you’ll need some dependencies:
9696

@@ -99,7 +99,7 @@ Otherwise to install and use locally from source, you’ll need some dependencie
9999
* GNU `make` (4.2+) with corresponding autoconf tools,
100100
* Python 3 plus assorted modules, see *requirements.txt* file,
101101
* Rust tools including `cargo` and `rustc` to build the CLI,
102-
* And a handfull of other font related CLI utilities, namely: `sfnt2woff-zopfli`, `psautohint`, `ttfautohint`, and `woff2_compress`.
102+
* And a handful of other font related CLI utilities, namely: `sfnt2woff-zopfli`, `psautohint`, `ttfautohint`, and `woff2_compress`.
103103

104104
To install the software to your computer, either clone this repository and run `./bootstrap.sh` or [download and extract the latest release](https://github.com/theleagueof/fontship/releases), then run:
105105

@@ -152,4 +152,4 @@ $ fontship make dist
152152
### Versioning
153153

154154
The font version setting in all generated fonts is determined by the tag on the git repository.
155-
Version tags should conform to the `MAJOR.MINOR` format descriped by [openfv](https://github.com/openfv/openfv#3-version-number-semantics).
155+
Version tags should conform to the `MAJOR.MINOR` format described by [openfv](https://github.com/openfv/openfv#3-version-number-semantics).

rules/glyphs.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ $(shell rm -f $(_TMP))
2222
%.designspace: %.glyphs
2323
echo MM $@
2424

25-
# Glyphs -> Varibale OTF
25+
# Glyphs -> Variable OTF
2626

2727
$(BUILDDIR)/%-VF-variable.otf: $(SOURCEDIR)/%.glyphs | $(BUILDDIR)
2828
$(FONTMAKE) $(FONTMAKEFLAGS) -g $< -o variable-cff2 --output-path $@
2929

30-
# Glyphs -> Varibale TTF
30+
# Glyphs -> Variable TTF
3131

3232
$(BUILDDIR)/%-VF-variable.ttf: $(SOURCEDIR)/%.glyphs | $(BUILDDIR)
3333
$(FONTMAKE) $(FONTMAKEFLAGS) -g $< -o variable --output-path $@

rules/rules.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ $(BUILDDIR):
279279
mkdir -p $@
280280

281281
ifeq ($(PROJECT),Data)
282-
$(warning We cannot read the Project’s name inside Docker. Please manually specify it by adding PROJECT='Name' as an agument to your command invocation)
282+
$(warning We cannot read the Project’s name inside Docker. Please manually specify it by adding PROJECT='Name' as an argument to your command invocation)
283283
endif
284284

285285
-include $(FONTSHIPDIR)/rules/$(CANONICAL).mk

src/setup/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ pub fn is_setup() -> Result<bool> {
5555
results.write().unwrap().push(ret);
5656
});
5757
s.spawn(|_| {
58-
let ret = is_make_exectuable().unwrap();
58+
let ret = is_make_executable().unwrap();
5959
results.write().unwrap().push(ret);
6060
});
6161
});
@@ -125,7 +125,7 @@ pub fn is_writable() -> Result<bool> {
125125
}
126126

127127
/// Check if we can execute the system's `make` utility
128-
pub fn is_make_exectuable() -> Result<bool> {
128+
pub fn is_make_executable() -> Result<bool> {
129129
let status = FONTSHIPUI.new_check("setup-is-make-executable");
130130
let ret = Exec::cmd("make")
131131
.arg("-v")

0 commit comments

Comments
 (0)