Skip to content

Commit 53d2e08

Browse files
committed
Fix some typos
1 parent df89738 commit 53d2e08

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

alibuild_helpers/analytics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def askForAnalytics():
2626
" https://github.com/alisw/alibuild/blob/master/ANALYTICS.md\n")
2727
a = input("Is that ok for you [YES/no]? ")
2828
if a.strip() and a.strip().lower().startswith("n"):
29-
debug("User requsted disabling analytics.")
29+
debug("User requested disabling analytics.")
3030
return disable_analytics()
3131
return generate_analytics_id()
3232

alibuild_helpers/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ def generate_initdotsh(package, specs, architecture, post_build=False):
391391
if key != "DYLD_LIBRARY_PATH")
392392

393393
# Return string without a trailing newline, since we expect call sites to
394-
# append that (and the obvious way to inesrt it into the build tempate is by
394+
# append that (and the obvious way to inesrt it into the build template is by
395395
# putting the "%(initdotsh_*)s" on its own line, which has the same effect).
396396
return "\n".join(lines)
397397

alibuild_helpers/deps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def doDeps(args, parser):
4545
s["build_requires"] = [r for r in s["build_requires"] if r not in args.disable and r != "defaults-release"]
4646
s["runtime_requires"] = [r for r in s["runtime_requires"] if r not in args.disable and r != "defaults-release"]
4747

48-
# Determine which pacakages are only build/runtime dependencies
48+
# Determine which packages are only build/runtime dependencies
4949
all_build = set()
5050
all_runtime = set()
5151
for k,spec in specs.items():

alibuild_helpers/sl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# Sapling is a novel SCM by Meta (i.e. Facebook) that is fully compatible with
1111
# git, but has a different command line interface. Among the reasons why it's
12-
# worth suporting it is the ability to handle unnamed branches, the ability to
12+
# worth supporting it is the ability to handle unnamed branches, the ability to
1313
# absorb changes to the correct commit without having to explicitly rebase and
1414
# the integration with github to allow for pull requests to be created from the
1515
# command line from each commit of a branch.

alibuild_helpers/sync.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def fetch_tarball(self, spec) -> None:
252252
err = execute("""\
253253
for storePath in {storePaths}; do
254254
# Only get the first matching tarball. If there are multiple with the
255-
# same hash, we only need one and they should be interchangable.
255+
# same hash, we only need one and they should be interchangeable.
256256
if tars=$(rsync -s --list-only "{remoteStore}/$storePath/{pkg}-{ver}-*.{arch}.tar.gz" 2>/dev/null) &&
257257
# Strip away the metadata in rsync's file listing, leaving only the first filename.
258258
tar=$(echo "$tars" | sed -rn '1s#[- a-z0-9,/]* [0-9]{{2}}:[0-9]{{2}}:[0-9]{{2}} ##p') &&

docs/docs/quick.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ use it from there:
2323
This will provide you the tool itself.
2424

2525
In order to work you will need a set of recipes from a repository called
26-
[alidist](https://github.com/alisw/alidist.git). On the first invokation of
26+
[alidist](https://github.com/alisw/alidist.git). On the first invocation of
2727
`alibuild` the recipes will be downloaded and put in a `alidist` folder.
2828
In case you need to use a special branch / repository you can always `git clone`
2929
the repository yourself. By default alibuild will pickup the recipes found

docs/docs/troubleshooting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ aliBuild had troubles with it. Upgrading to the latest version via:
146146
or by doing `git pull` should fix the issue.
147147

148148

149-
### aliBuild does not pick up tool X from the sytem
149+
### aliBuild does not pick up tool X from the system
150150

151151
By default aliBuild prefers using tools from the system whenever
152152
possible. Examples of those tools are CMake, the GCC compiler or the
@@ -206,7 +206,7 @@ subsequent rebuild will ignore the changes. This can be worked around in two way
206206
What 1. does is to make alibuild aware of the changes of the new file, so you
207207
will get a new build for each change to the file. What 2. does is to always
208208
execute the incremental recipe to refresh the installation folder on each aliBuild
209-
invokation, possibly updating untracked files if so specified in the recipe itself.
209+
invocation, possibly updating untracked files if so specified in the recipe itself.
210210

211211
### How do I set compilation options for AliRoot and / or AliPhysics?
212212

@@ -274,7 +274,7 @@ third party does the work and provides a pull request.
274274

275275
### Can I build on an unsupported architecture?
276276

277-
You can try, but of course your milage might vary. In case the architecture is similar to one of the supported ones (e.g. Ubuntu and Kubuntu) this should be recognized automatically and the build should proceed, attempting to use the supported one. This will still not guarantee things will not break for some packages.
277+
You can try, but of course your mileage might vary. In case the architecture is similar to one of the supported ones (e.g. Ubuntu and Kubuntu) this should be recognized automatically and the build should proceed, attempting to use the supported one. This will still not guarantee things will not break for some packages.
278278

279279
In case the architecture is completely unknown to us, you will get a message:
280280

templates/alibuild_to_please.jnj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# A alibuild template to convert the alidist recipes to
22
# the please build system. While not fully functional, it serves
33
# as explanatory example on how one can use templates to
4-
# extract informations from alidist, without having to instrument
4+
# extract information from alidist, without having to instrument
55
# alibuild itself.
66
#
77
# Use with:

0 commit comments

Comments
 (0)