Merge pull request #78 from ulidtko/typos

fix #78 Typos
Esse commit está contido em:
Victor Nakoryakov
2013-05-19 07:46:04 -07:00
2 arquivos alterados com 3 adições e 3 exclusões
+2 -2
Ver Arquivo
@@ -23,7 +23,7 @@ class Build(Command):
Build a project in the current directory and produce a ready-to-upload
firmware file.
The project is expected to have a `src' subdirectroy where all its sources
The project is expected to have a `src' subdirectory where all its sources
are located. This directory is scanned recursively to find
*.[c|cpp|pde|ino] files. They are compiled and linked into resulting
firmware hex-file.
@@ -31,7 +31,7 @@ class Build(Command):
Also any external library dependencies are tracked automatically. If a
source file includes any library found among standard Arduino libraries or
a library placed in `lib' subdirectory of the project, the library gets
build too.
built too.
Build artifacts are placed in `.build' subdirectory of the project.
"""
+1 -1
Ver Arquivo
@@ -27,7 +27,7 @@ class Init(Command):
parser.add_argument('-t', '--template', default=self.default_template,
help='Project template to use')
parser.epilog = "Available probject templates:\n\n"
parser.epilog = "Available project templates:\n\n"
template_items = []
for tdir in list_subdirs(self.e.templates_dir):