Skip to content

Commit

Permalink
Fix typos (#6324)
Browse files Browse the repository at this point in the history
  • Loading branch information
caminogr authored and arturoc committed Jul 2, 2019
1 parent cb8e612 commit 68eb8a7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/android_studio.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Press the Play button next to the `androidEmptyExample` shown in the toolbar. Wi
- If your connected device is not recognized by Android Studio, restart adb
with `adb kill-server && adb start-server`.

- If, when syncronizing a project for the first time, clicking on the console
- If, when synchronizing a project for the first time, clicking on the console
messages does not solve the problem regarding a missing dependency of the
android API (like for example Android API 22), open the sdk from the console,
select the missing API and install it.
8 changes: 4 additions & 4 deletions libs/openFrameworks/graphics/ofTrueTypeFont.h
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class ofTrueTypeFont{
/// \param fontsize The size in pixels to load the font.
/// \param _bAntiAliased true if the font should be anti-aliased.
/// \param _bFullCharacterSet true if the full character set should be cached.
/// \param makeControus true if the vector contours should be cached.
/// \param makeContours true if the vector contours should be cached.
/// \param simplifyAmt the amount to simplify the vector contours. Larger number means more simplified.
/// \param dpi the dots per inch used to specify rendering size.
/// \returns true if the font was loaded correctly.
Expand Down Expand Up @@ -239,7 +239,7 @@ class ofTrueTypeFont{
/// \returns the current line height.
float getLineHeight() const;

/// \brief Sets line height for text drawn on screen.
/// \brief Sets line height for text drawn on screen.
///
/// Note the line height is automatically computed based on the font size, when you load in the font.
///
Expand Down Expand Up @@ -298,7 +298,7 @@ class ofTrueTypeFont{
/// \returns the width of the space.
float getSpaceSize() const;

/// \brief Sets the width for the whitespace character for this font
/// \brief Sets the width for the whitespace character for this font.
///
/// This number, which defaults to 1.0, scales the width of a whitespace, based on the
/// width of the whitespace glyph of this font.
Expand Down Expand Up @@ -336,7 +336,7 @@ class ofTrueTypeFont{
/// \name Drawing
/// \{

/// \brief Draw a string s at position x,y
/// \brief Draws a string s at position x,y.
/// \param s String to draw
/// \param x X position of string
/// \param y Y position of string
Expand Down
2 changes: 1 addition & 1 deletion scripts/dev/download_libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cat << EOF
msys2: 32
android: armv7, arm64, and x86 (if not specified will download all)
linux: 64gcc4, 64gcc5, 64gcc6 / 64, armv6l or armv7l
-n, --no-overwrite Merge new libraries with exisiting ones, use only to download same version for different platforms
-n, --no-overwrite Merge new libraries with existing ones, use only to download same version for different platforms
If not set deletes any existing libraries
-s, --silent Silent download progress
-h, --help Shows this message
Expand Down

0 comments on commit 68eb8a7

Please sign in to comment.